diff --git a/src/Accounts/Accounts/Az.Accounts.psd1 b/src/Accounts/Accounts/Az.Accounts.psd1
index d9e6e5c5db4c..cd3ea5e93a0d 100644
--- a/src/Accounts/Accounts/Az.Accounts.psd1
+++ b/src/Accounts/Accounts/Az.Accounts.psd1
@@ -116,8 +116,8 @@ CmdletsToExport = 'Disable-AzDataCollection', 'Disable-AzContextAutosave',
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = 'Add-AzAccount', 'Login-AzAccount', 'Remove-AzAccount',
- 'Logout-AzAccount', 'Select-AzSubscription', 'Resolve-Error',
- 'Save-AzProfile', 'Get-AzDomain', 'Invoke-AzRest', 'Set-AzConfig'
+ 'Logout-AzAccount', 'Select-AzSubscription', 'Save-AzProfile',
+ 'Get-AzDomain', 'Invoke-AzRest', 'Set-AzConfig'
# DSC resources to export from this module
# DscResourcesToExport = @()
diff --git a/src/Accounts/Accounts/ChangeLog.md b/src/Accounts/Accounts/ChangeLog.md
index 7d0906d40c67..3dfa0b350c71 100644
--- a/src/Accounts/Accounts/ChangeLog.md
+++ b/src/Accounts/Accounts/ChangeLog.md
@@ -19,6 +19,7 @@
-->
## Upcoming Release
+* [Breaking Change] Removed alias `Resolve-Error` for the cmdlet `Resolve-AzError`.
* Updated the `Get-AzAccessToken` breaking change warning message.
* Added Long Running Operation Support for Invoke-AzRest command.
diff --git a/src/Accounts/Accounts/Errors/ResolveError.cs b/src/Accounts/Accounts/Errors/ResolveError.cs
index 5c6db96384ae..a5c88173aed7 100644
--- a/src/Accounts/Accounts/Errors/ResolveError.cs
+++ b/src/Accounts/Accounts/Errors/ResolveError.cs
@@ -25,12 +25,10 @@
namespace Microsoft.Azure.Commands.Profile.Errors
{
- [Alias("Resolve-Error")]
[Cmdlet("Resolve", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Error", DefaultParameterSetName = ResolveError.AnyErrorParameterSet)]
[OutputType(typeof(AzureErrorRecord))]
[OutputType(typeof(AzureExceptionRecord))]
[OutputType(typeof(AzureRestExceptionRecord))]
- [GenericBreakingChangeWithVersion("The alias 'Resolve-Error' will be removed. Please use 'Resolve-AzError' instead.", "13.0.0", "4.0.0")]
public class ResolveError : AzureRMCmdlet
{
public const string AnyErrorParameterSet = "AnyErrorParameterSet";
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/README.md b/src/DesktopVirtualization/DesktopVirtualization.Autorest/README.md
index a1843909ac96..3b0a741157bb 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/README.md
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/README.md
@@ -99,52 +99,9 @@ directive:
verb: Get
subject: ActiveApplication
remove: true
- - where:
- verb: Remove
+ - where:
+ verb: Remove
subject: UserSession
parameter-name: Force
set:
parameter-description: 'Specify to force userSession deletion.'
- - where:
- verb: Register
- set:
- preview-announcement:
- preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)
- estimated-ga-date: 2024-11-19
- - where:
- verb: Unregister
- set:
- preview-announcement:
- preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)
- estimated-ga-date: 2024-11-19
- - where:
- verb: Send
- set:
- preview-announcement:
- preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)
- estimated-ga-date: 2024-11-19
- - where:
- verb: Expand
- set:
- preview-announcement:
- preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)
- estimated-ga-date: 2024-11-19
- - where:
- verb: Get
- set:
- preview-announcement:
- preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)
- estimated-ga-date: 2024-11-19
- - where:
- verb: New
- set:
- preview-announcement:
- preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)
- estimated-ga-date: 2024-11-19
- - where:
- verb: Update
- set:
- preview-announcement:
- preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)
- estimated-ga-date: 2024-11-19
-```
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generate-portal-ux.ps1 b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generate-portal-ux.ps1
index 7e97a28c6ed1..2e834c51738b 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generate-portal-ux.ps1
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generate-portal-ux.ps1
@@ -247,7 +247,16 @@ function New-MetadataForParameterSet()
$cmdletName = Get-MappedCmdletFromFunctionName $ParameterSetInfo.Name
$description = (Get-CmdletAttribute -CmdletInfo $ParameterSetInfo -AttributeName "DescriptionAttribute").Description
[object[]]$example = New-ExampleForParameterSet $ParameterSetInfo
+ if ($Null -eq $example)
+ {
+ $example = @()
+ }
+
[string[]]$signature = New-ParameterArrayInParameterSet $ParameterSetInfo
+ if ($Null -eq $signature)
+ {
+ $signature = @()
+ }
return @{
Path = $httpPath
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_Expand.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_Expand.cs
index 04810ca8766b..0fe7c120bcf1 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_Expand.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_Expand.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Expand=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/expandMsixImage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Expand, @"AzWvdMsixImage_Expand", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IExpandMsixImage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Expands and Lists MSIX packages in an Image, given the Image Path.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandExpanded.cs
index e5c2967afa01..cbb9d1d88aab 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Expand=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/expandMsixImage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Expand, @"AzWvdMsixImage_ExpandExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IExpandMsixImage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Expands and Lists MSIX packages in an Image, given the Image Path.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaIdentity.cs
index 263043306913..2f6b3a5d4a1d 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Expand=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/expandMsixImage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Expand, @"AzWvdMsixImage_ExpandViaIdentity", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IExpandMsixImage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Expands and Lists MSIX packages in an Image, given the Image Path.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaIdentityExpanded.cs
index 963e2f30f6ad..eb8a768403fc 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Expand=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/expandMsixImage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Expand, @"AzWvdMsixImage_ExpandViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IExpandMsixImage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Expands and Lists MSIX packages in an Image, given the Image Path.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaJsonFilePath.cs
index 577de5666260..5630527afad7 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Expand=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/expandMsixImage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Expand, @"AzWvdMsixImage_ExpandViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IExpandMsixImage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Expands and Lists MSIX packages in an Image, given the Image Path.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaJsonString.cs
index c27330076ee0..b3629baf1dd0 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/ExpandAzWvdMsixImage_ExpandViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Expand=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/expandMsixImage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Expand, @"AzWvdMsixImage_ExpandViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IExpandMsixImage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Expands and Lists MSIX packages in an Image, given the Image Path.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_Get.cs
index bcf6fa01a4b2..4ef9b0b60044 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/appAttachPackages/{appAttachPackageName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdAppAttachPackage_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IAppAttachPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get an app attach package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_GetViaIdentity.cs
index c008a3ff7c6c..a0e8df7226f9 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/appAttachPackages/{appAttachPackageName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdAppAttachPackage_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IAppAttachPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get an app attach package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_List.cs
index 73c4c4c6074e..ff10e15e62b8 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/appAttachPackages"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdAppAttachPackage_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IAppAttachPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List App Attach packages in resource group.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_List1.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_List1.cs
index 84831e04034b..cc9696ef27e1 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_List1.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdAppAttachPackage_List1.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListBySubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.DesktopVirtualization/appAttachPackages"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdAppAttachPackage_List1")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IAppAttachPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List App Attach packages in subscription.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_Get.cs
index 2452dea0596a..1cc08ed98e74 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdApplicationGroup_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplicationGroup))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get an application group.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_GetViaIdentity.cs
index 239315049bfd..f2d61b551923 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdApplicationGroup_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplicationGroup))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get an application group.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_List.cs
index d50e13549a73..5d792ea943b1 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdApplicationGroup_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplicationGroup))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List applicationGroups.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_List1.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_List1.cs
index 4978013ee67a..af3487939eb0 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_List1.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplicationGroup_List1.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListBySubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.DesktopVirtualization/applicationGroups"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdApplicationGroup_List1")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplicationGroup))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List applicationGroups in subscription.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_Get.cs
index a8d3fbd7d89e..5d4c0ba91aa0 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications/{applicationName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdApplication_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get an application.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_GetViaIdentity.cs
index 0bb52af753ab..c7a6754fa76d 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications/{applicationName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdApplication_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get an application.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_GetViaIdentityApplicationGroup.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_GetViaIdentityApplicationGroup.cs
index dd32c599b437..6ce34a8e8430 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_GetViaIdentityApplicationGroup.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_GetViaIdentityApplicationGroup.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications/{applicationName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdApplication_GetViaIdentityApplicationGroup")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get an application.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_List.cs
index 64a914522912..8f49b0276c32 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdApplication_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdApplication_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List applications.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_Get.cs
index 2d5f965ae502..8bf37dc69513 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/desktops/{desktopName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdDesktop_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktop))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a desktop.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_GetViaIdentity.cs
index 43fae15d0d38..f3650343f832 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/desktops/{desktopName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdDesktop_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktop))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a desktop.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_GetViaIdentityApplicationGroup.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_GetViaIdentityApplicationGroup.cs
index eaaf1461f88a..f855c9866cd9 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_GetViaIdentityApplicationGroup.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_GetViaIdentityApplicationGroup.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/desktops/{desktopName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdDesktop_GetViaIdentityApplicationGroup")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktop))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a desktop.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_List.cs
index b262e1f82a18..87015dec9a36 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdDesktop_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/desktops"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdDesktop_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktop))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List desktops.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPoolRegistrationToken_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPoolRegistrationToken_List.cs
index 247584940752..65c442354e36 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPoolRegistrationToken_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPoolRegistrationToken_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListRegistrationTokens=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/listRegistrationTokens"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdHostPoolRegistrationToken_List", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IRegistrationTokenList))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Operation to list the RegistrationTokens associated with the HostPool")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPoolRegistrationToken_Retrieve.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPoolRegistrationToken_Retrieve.cs
index c8e46d84e4da..2c0a566a27d3 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPoolRegistrationToken_Retrieve.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPoolRegistrationToken_Retrieve.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] RetrieveRegistrationToken=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/retrieveRegistrationToken"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdHostPoolRegistrationToken_Retrieve", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IRegistrationInfo))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Registration token of the host pool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPoolRegistrationToken_RetrieveViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPoolRegistrationToken_RetrieveViaIdentity.cs
index 2063239a7e44..a333acd92f24 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPoolRegistrationToken_RetrieveViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPoolRegistrationToken_RetrieveViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] RetrieveRegistrationToken=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/retrieveRegistrationToken"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdHostPoolRegistrationToken_RetrieveViaIdentity", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IRegistrationInfo))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Registration token of the host pool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_Get.cs
index 063d76c0e393..875be757fb72 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdHostPool_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IHostPool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a host pool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_GetViaIdentity.cs
index fc785164a956..c7fe85cbce0d 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdHostPool_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IHostPool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a host pool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_List.cs
index 1f06439d6510..bc89058abf7e 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdHostPool_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IHostPool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List hostPools.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_List1.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_List1.cs
index cb6f4b3e5709..7cc0e28bc318 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_List1.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdHostPool_List1.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.DesktopVirtualization/hostPools"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdHostPool_List1")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IHostPool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List hostPools in subscription.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_Get.cs
index aee9476fabc4..ceea78bab962 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdMsixPackage_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a msixpackage.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_GetViaIdentity.cs
index d55f4e248c69..370617e333cc 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdMsixPackage_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a msixpackage.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_GetViaIdentityHostPool.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_GetViaIdentityHostPool.cs
index 55cd6c6bb8a3..e330ea1cbdcd 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_GetViaIdentityHostPool.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_GetViaIdentityHostPool.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdMsixPackage_GetViaIdentityHostPool")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a msixpackage.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_List.cs
index bf584080830c..9b5c28a62db5 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdMsixPackage_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdMsixPackage_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List MSIX packages in hostpool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_Get.cs
index ee416bab1151..fd17079586a5 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] GetByWorkspace=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdPrivateEndpointConnection_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IPrivateEndpointConnectionWithSystemData))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a private endpoint connection.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_Get1.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_Get1.cs
index 5275af98a995..d3c60046b206 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_Get1.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_Get1.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] GetByHostPool=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/privateEndpointConnections/{privateEndpointConnectionName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdPrivateEndpointConnection_Get1")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IPrivateEndpointConnectionWithSystemData))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a private endpoint connection.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentity.cs
index ae5e9474b681..9409646d8d40 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] GetByWorkspace=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdPrivateEndpointConnection_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IPrivateEndpointConnectionWithSystemData))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a private endpoint connection.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentity1.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentity1.cs
index 7e7adcc3520b..d2a38adaafb8 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentity1.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentity1.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] GetByHostPool=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/privateEndpointConnections/{privateEndpointConnectionName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdPrivateEndpointConnection_GetViaIdentity1")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IPrivateEndpointConnectionWithSystemData))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a private endpoint connection.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentityHostPool.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentityHostPool.cs
index 982a6939f2e1..d1751690249f 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentityHostPool.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentityHostPool.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] GetByHostPool=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/privateEndpointConnections/{privateEndpointConnectionName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdPrivateEndpointConnection_GetViaIdentityHostPool")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IPrivateEndpointConnectionWithSystemData))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a private endpoint connection.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentityWorkspace.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentityWorkspace.cs
index 866bf46483f7..5b00abf6a8d5 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentityWorkspace.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_GetViaIdentityWorkspace.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] GetByWorkspace=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}/privateEndpointConnections/{privateEndpointConnectionName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdPrivateEndpointConnection_GetViaIdentityWorkspace")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IPrivateEndpointConnectionWithSystemData))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a private endpoint connection.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_List.cs
index ec69476f4463..4fa6c18b2394 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListByWorkspace=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}/privateEndpointConnections"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdPrivateEndpointConnection_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IPrivateEndpointConnectionWithSystemData))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List private endpoint connections.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_List1.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_List1.cs
index a868f3c4a396..f859ed089475 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_List1.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateEndpointConnection_List1.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListByHostPool=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/privateEndpointConnections"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdPrivateEndpointConnection_List1")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IPrivateEndpointConnectionWithSystemData))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List private endpoint connections associated with hostpool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateLinkResource_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateLinkResource_List.cs
index dc4a048204c9..d00804921aa4 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateLinkResource_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateLinkResource_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListByWorkspace=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}/privateLinkResources"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdPrivateLinkResource_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IPrivateLinkResource))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List the private link resources available for this workspace.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateLinkResource_List1.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateLinkResource_List1.cs
index 0f018575b086..6c0703129522 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateLinkResource_List1.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdPrivateLinkResource_List1.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListByHostPool=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/privateLinkResources"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdPrivateLinkResource_List1")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IPrivateLinkResource))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List the private link resources available for this hostpool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_Get.cs
index 2ece37bfa4e7..0e559697a8f2 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlanPersonalSchedule_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a ScalingPlanPersonalSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_GetViaIdentity.cs
index 72216a62bda6..2f1b9df4d1eb 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlanPersonalSchedule_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a ScalingPlanPersonalSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_GetViaIdentityScalingPlan.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_GetViaIdentityScalingPlan.cs
index 865a13904799..f6491066864a 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_GetViaIdentityScalingPlan.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_GetViaIdentityScalingPlan.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlanPersonalSchedule_GetViaIdentityScalingPlan")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a ScalingPlanPersonalSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_List.cs
index 5c62fb2c59ad..fdca8621a24f 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPersonalSchedule_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlanPersonalSchedule_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List ScalingPlanPersonalSchedules.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_Get.cs
index aa85eb08bbe0..f2811b18240d 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlanPooledSchedule_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a ScalingPlanPooledSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_GetViaIdentity.cs
index 261cb64bb812..0eb5a692ac0b 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlanPooledSchedule_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a ScalingPlanPooledSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_GetViaIdentityScalingPlan.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_GetViaIdentityScalingPlan.cs
index 4afc58e7c649..109042220e93 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_GetViaIdentityScalingPlan.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_GetViaIdentityScalingPlan.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlanPooledSchedule_GetViaIdentityScalingPlan")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a ScalingPlanPooledSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_List.cs
index 56cc972804f9..da32399565b5 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlanPooledSchedule_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlanPooledSchedule_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List ScalingPlanPooledSchedules.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_Get.cs
index 28482a75f526..d3182afcdd5a 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlan_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlan))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a scaling plan.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_GetViaIdentity.cs
index ee09deff22d1..738dbecb3a23 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlan_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlan))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a scaling plan.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_List.cs
index 9f0872d36f72..7703161598c1 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlan_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlan))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List scaling plans.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_List1.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_List1.cs
index 5277b08e4a44..95ad91f75150 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_List1.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_List1.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListBySubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.DesktopVirtualization/scalingPlans"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlan_List1")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlan))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List scaling plans in subscription.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_List2.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_List2.cs
index 121f76621b21..aa4ef3dc2d79 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_List2.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdScalingPlan_List2.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListByHostPool=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/scalingPlans"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdScalingPlan_List2")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlan))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List scaling plan associated with hostpool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_Get.cs
index d8a3f294d1a4..c526065ab4d0 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdSessionHost_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.ISessionHost))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a session host.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_GetViaIdentity.cs
index 4ba4daea7a68..670c291038e3 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdSessionHost_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.ISessionHost))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a session host.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_GetViaIdentityHostPool.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_GetViaIdentityHostPool.cs
index 8a756c5de894..e273d904a991 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_GetViaIdentityHostPool.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_GetViaIdentityHostPool.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdSessionHost_GetViaIdentityHostPool")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.ISessionHost))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a session host.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_List.cs
index 93e46e1ca660..722803c563a5 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdSessionHost_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdSessionHost_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.ISessionHost))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List sessionHosts.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdStartMenuItem_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdStartMenuItem_List.cs
index fd8a9018ce4d..4b159a89cdac 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdStartMenuItem_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdStartMenuItem_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/startMenuItems"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdStartMenuItem_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IStartMenuItem))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List start menu items in the given application group.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_Get.cs
index a54046552233..c01f843fc050 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions/{userSessionId}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdUserSession_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IUserSession))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a userSession.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_GetViaIdentity.cs
index 299275857474..173098c3e75e 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions/{userSessionId}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdUserSession_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IUserSession))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a userSession.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_GetViaIdentityHostPool.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_GetViaIdentityHostPool.cs
index bbd1540c986a..4d322ca7e5be 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_GetViaIdentityHostPool.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_GetViaIdentityHostPool.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions/{userSessionId}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdUserSession_GetViaIdentityHostPool")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IUserSession))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a userSession.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_GetViaIdentitySessionHost.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_GetViaIdentitySessionHost.cs
index f785f6a55786..3ee641839e01 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_GetViaIdentitySessionHost.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_GetViaIdentitySessionHost.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions/{userSessionId}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdUserSession_GetViaIdentitySessionHost")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IUserSession))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a userSession.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_List.cs
index 8b066875028d..1fa2f41aaefe 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListByHostPool=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/userSessions"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdUserSession_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IUserSession))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List userSessions.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_List1.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_List1.cs
index e5e2bd83b38c..5fde5feecd05 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_List1.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdUserSession_List1.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdUserSession_List1")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IUserSession))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List userSessions.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_Get.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_Get.cs
index 58c267de2a73..e27c1c16be3e 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_Get.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_Get.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdWorkspace_Get")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IWorkspace))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a workspace.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_GetViaIdentity.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_GetViaIdentity.cs
index 7c460921061c..557f7a7ba8c9 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_GetViaIdentity.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_GetViaIdentity.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdWorkspace_GetViaIdentity")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IWorkspace))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Get a workspace.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_List.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_List.cs
index 1f7a957a21fe..a87f9041ce13 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_List.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_List.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdWorkspace_List")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IWorkspace))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List workspaces.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_List1.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_List1.cs
index 7c196e7436f0..a17deca08b9c 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_List1.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/GetAzWvdWorkspace_List1.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] ListBySubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.DesktopVirtualization/workspaces"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzWvdWorkspace_List1")]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IWorkspace))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"List workspaces in subscription.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdAppAttachPackage_CreateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdAppAttachPackage_CreateExpanded.cs
index d77593eeef64..ec8068b04ad7 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdAppAttachPackage_CreateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdAppAttachPackage_CreateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/appAttachPackages/{appAttachPackageName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdAppAttachPackage_CreateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IAppAttachPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create an App Attach package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdAppAttachPackage_CreateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdAppAttachPackage_CreateViaJsonFilePath.cs
index 377244182f91..ec190a7c7054 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdAppAttachPackage_CreateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdAppAttachPackage_CreateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/appAttachPackages/{appAttachPackageName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdAppAttachPackage_CreateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IAppAttachPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create an App Attach package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdAppAttachPackage_CreateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdAppAttachPackage_CreateViaJsonString.cs
index 118c603617e9..d919551ecfa5 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdAppAttachPackage_CreateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdAppAttachPackage_CreateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/appAttachPackages/{appAttachPackageName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdAppAttachPackage_CreateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IAppAttachPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create an App Attach package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplicationGroup_CreateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplicationGroup_CreateExpanded.cs
index 8ab3e9df74aa..19c281c26ab2 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplicationGroup_CreateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplicationGroup_CreateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdApplicationGroup_CreateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplicationGroup))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create an applicationGroup.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplicationGroup_CreateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplicationGroup_CreateViaJsonFilePath.cs
index af15f39fe87e..a72fe8986d16 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplicationGroup_CreateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplicationGroup_CreateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdApplicationGroup_CreateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplicationGroup))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create an applicationGroup.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplicationGroup_CreateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplicationGroup_CreateViaJsonString.cs
index 60caa232f927..b41314310438 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplicationGroup_CreateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplicationGroup_CreateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdApplicationGroup_CreateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplicationGroup))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create an applicationGroup.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplication_CreateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplication_CreateExpanded.cs
index 546b57e9fb73..160ebd22e506 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplication_CreateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplication_CreateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications/{applicationName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdApplication_CreateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create an application.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplication_CreateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplication_CreateViaJsonFilePath.cs
index 665d4b094632..828916fe23ec 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplication_CreateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplication_CreateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications/{applicationName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdApplication_CreateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create an application.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplication_CreateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplication_CreateViaJsonString.cs
index 0e20918fe1a5..0d28b98e5886 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplication_CreateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdApplication_CreateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications/{applicationName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdApplication_CreateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create an application.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdHostPool_CreateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdHostPool_CreateExpanded.cs
index a1f703172793..0980d9dcf86a 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdHostPool_CreateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdHostPool_CreateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdHostPool_CreateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IHostPool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a host pool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdHostPool_CreateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdHostPool_CreateViaJsonFilePath.cs
index 13f02aa514a8..6231af883917 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdHostPool_CreateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdHostPool_CreateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdHostPool_CreateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IHostPool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a host pool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdHostPool_CreateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdHostPool_CreateViaJsonString.cs
index 1ef698fbbf70..9cdc9be097bf 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdHostPool_CreateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdHostPool_CreateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdHostPool_CreateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IHostPool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a host pool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdMsixPackage_CreateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdMsixPackage_CreateExpanded.cs
index adaa247766bd..3e422b7fd525 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdMsixPackage_CreateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdMsixPackage_CreateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdMsixPackage_CreateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a MSIX package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdMsixPackage_CreateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdMsixPackage_CreateViaJsonFilePath.cs
index 7e83938b7e11..f271e5220454 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdMsixPackage_CreateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdMsixPackage_CreateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdMsixPackage_CreateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a MSIX package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdMsixPackage_CreateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdMsixPackage_CreateViaJsonString.cs
index 0887dcc07078..d92a6de5e81f 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdMsixPackage_CreateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdMsixPackage_CreateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdMsixPackage_CreateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a MSIX package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPersonalSchedule_CreateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPersonalSchedule_CreateExpanded.cs
index 076dce610b16..3d3844a7e1ca 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPersonalSchedule_CreateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPersonalSchedule_CreateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdScalingPlanPersonalSchedule_CreateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a ScalingPlanPersonalSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPersonalSchedule_CreateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPersonalSchedule_CreateViaJsonFilePath.cs
index 9092d8059b2d..654e904ce06c 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPersonalSchedule_CreateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPersonalSchedule_CreateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdScalingPlanPersonalSchedule_CreateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a ScalingPlanPersonalSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPersonalSchedule_CreateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPersonalSchedule_CreateViaJsonString.cs
index 6352bac503fb..30ccd0321bd7 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPersonalSchedule_CreateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPersonalSchedule_CreateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdScalingPlanPersonalSchedule_CreateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a ScalingPlanPersonalSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPooledSchedule_CreateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPooledSchedule_CreateExpanded.cs
index 760309b27856..ec354277836e 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPooledSchedule_CreateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPooledSchedule_CreateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdScalingPlanPooledSchedule_CreateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a ScalingPlanPooledSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPooledSchedule_CreateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPooledSchedule_CreateViaJsonFilePath.cs
index 4146d2b0891e..428628674a21 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPooledSchedule_CreateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPooledSchedule_CreateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdScalingPlanPooledSchedule_CreateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a ScalingPlanPooledSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPooledSchedule_CreateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPooledSchedule_CreateViaJsonString.cs
index 3a592e620bdd..38dd744ae100 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPooledSchedule_CreateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlanPooledSchedule_CreateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdScalingPlanPooledSchedule_CreateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a ScalingPlanPooledSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlan_CreateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlan_CreateExpanded.cs
index ded94c5328b4..3926c1f591f3 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlan_CreateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlan_CreateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdScalingPlan_CreateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlan))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a scaling plan.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlan_CreateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlan_CreateViaJsonFilePath.cs
index 84f1fc974216..3744128a8c2c 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlan_CreateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlan_CreateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdScalingPlan_CreateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlan))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a scaling plan.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlan_CreateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlan_CreateViaJsonString.cs
index 2ed8d4e08831..ddd956dcd309 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlan_CreateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdScalingPlan_CreateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Create=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdScalingPlan_CreateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlan))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a scaling plan.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdWorkspace_CreateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdWorkspace_CreateExpanded.cs
index eca53cd629c2..c0ab1fcc9ea9 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdWorkspace_CreateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdWorkspace_CreateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdWorkspace_CreateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IWorkspace))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a workspace.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdWorkspace_CreateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdWorkspace_CreateViaJsonFilePath.cs
index 03687f210e33..b61ccd29cde7 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdWorkspace_CreateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdWorkspace_CreateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdWorkspace_CreateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IWorkspace))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a workspace.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdWorkspace_CreateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdWorkspace_CreateViaJsonString.cs
index a0289c2a6a04..342b49058200 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdWorkspace_CreateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/NewAzWvdWorkspace_CreateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzWvdWorkspace_CreateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IWorkspace))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"create a workspace.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendExpanded.cs
index cea76ddc529c..373380ab8a66 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] SendMessage=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions/{userSessionId}/sendMessage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommunications.Send, @"AzWvdUserSessionMessage_SendExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(bool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Send a message to a user.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentityExpanded.cs
index 7c024905d35b..114a5d2acc46 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] SendMessage=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions/{userSessionId}/sendMessage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommunications.Send, @"AzWvdUserSessionMessage_SendViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(bool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Send a message to a user.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentityHostPool.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentityHostPool.cs
index 52e35f324b7a..e1890a4429c6 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentityHostPool.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentityHostPool.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] SendMessage=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions/{userSessionId}/sendMessage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommunications.Send, @"AzWvdUserSessionMessage_SendViaIdentityHostPool", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(bool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Send a message to a user.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentityHostPoolExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentityHostPoolExpanded.cs
index ada876cf63e1..56660d503d0d 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentityHostPoolExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentityHostPoolExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] SendMessage=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions/{userSessionId}/sendMessage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommunications.Send, @"AzWvdUserSessionMessage_SendViaIdentityHostPoolExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(bool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Send a message to a user.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentitySessionHost.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentitySessionHost.cs
index 7e471c7bcf59..f50c2b96b574 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentitySessionHost.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentitySessionHost.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] SendMessage=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions/{userSessionId}/sendMessage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommunications.Send, @"AzWvdUserSessionMessage_SendViaIdentitySessionHost", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(bool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Send a message to a user.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentitySessionHostExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentitySessionHostExpanded.cs
index 839963e18d33..d87a23dd3937 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentitySessionHostExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaIdentitySessionHostExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] SendMessage=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions/{userSessionId}/sendMessage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommunications.Send, @"AzWvdUserSessionMessage_SendViaIdentitySessionHostExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(bool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Send a message to a user.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaJsonFilePath.cs
index 274930727e44..5803b0e43b21 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] SendMessage=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions/{userSessionId}/sendMessage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommunications.Send, @"AzWvdUserSessionMessage_SendViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(bool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Send a message to a user.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaJsonString.cs
index 6dd2f5680203..df2bd9dc2f43 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/SendAzWvdUserSessionMessage_SendViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] SendMessage=>POST:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}/userSessions/{userSessionId}/sendMessage"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommunications.Send, @"AzWvdUserSessionMessage_SendViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(bool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"Send a message to a user.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateExpanded.cs
index fcb83879845b..280ddb2548d0 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/appAttachPackages/{appAttachPackageName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdAppAttachPackage_UpdateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IAppAttachPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an App Attach Package")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateViaIdentityExpanded.cs
index 8941af3683ae..338ffacce8a1 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/appAttachPackages/{appAttachPackageName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdAppAttachPackage_UpdateViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IAppAttachPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an App Attach Package")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateViaJsonFilePath.cs
index 9d228488f03e..0009869ccd83 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/appAttachPackages/{appAttachPackageName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdAppAttachPackage_UpdateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IAppAttachPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an App Attach Package")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateViaJsonString.cs
index 679d0eefa970..1ae684c560d0 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdAppAttachPackage_UpdateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/appAttachPackages/{appAttachPackageName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdAppAttachPackage_UpdateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IAppAttachPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an App Attach Package")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateExpanded.cs
index 97dc339a2201..79453fec14b9 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdApplicationGroup_UpdateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplicationGroup))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an applicationGroup.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateViaIdentityExpanded.cs
index 2e88c3edd515..512e9f86f9dd 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdApplicationGroup_UpdateViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplicationGroup))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an applicationGroup.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateViaJsonFilePath.cs
index cf477319a418..28f7cb4d82e0 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdApplicationGroup_UpdateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplicationGroup))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an applicationGroup.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateViaJsonString.cs
index 0091820ee14e..cc38eaca64f8 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplicationGroup_UpdateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdApplicationGroup_UpdateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplicationGroup))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an applicationGroup.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateExpanded.cs
index 032e225e8857..cea262557d55 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications/{applicationName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdApplication_UpdateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an application.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaIdentityApplicationGroup.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaIdentityApplicationGroup.cs
index c139700e8da0..51cefddb76bd 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaIdentityApplicationGroup.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaIdentityApplicationGroup.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications/{applicationName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdApplication_UpdateViaIdentityApplicationGroup", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an application.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaIdentityApplicationGroupExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaIdentityApplicationGroupExpanded.cs
index f45b33f1ad95..c071ef50e9f8 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaIdentityApplicationGroupExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaIdentityApplicationGroupExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications/{applicationName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdApplication_UpdateViaIdentityApplicationGroupExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an application.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaIdentityExpanded.cs
index 7ecd38f3186d..e65c37309d68 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications/{applicationName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdApplication_UpdateViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an application.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaJsonFilePath.cs
index b6f058295671..d6b1fa28ebd4 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications/{applicationName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdApplication_UpdateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an application.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaJsonString.cs
index 7b07b75a2d4f..7584d2bfe3bd 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdApplication_UpdateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/applications/{applicationName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdApplication_UpdateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IApplication))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an application.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateExpanded.cs
index 942032edb889..445295cbd990 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/desktops/{desktopName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdDesktop_UpdateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktop))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a desktop.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaIdentityApplicationGroup.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaIdentityApplicationGroup.cs
index 2c8d1b85e691..af5e8b2794ed 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaIdentityApplicationGroup.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaIdentityApplicationGroup.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/desktops/{desktopName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdDesktop_UpdateViaIdentityApplicationGroup", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktop))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a desktop.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaIdentityApplicationGroupExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaIdentityApplicationGroupExpanded.cs
index 0d66352efe15..dbb76b592f3d 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaIdentityApplicationGroupExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaIdentityApplicationGroupExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/desktops/{desktopName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdDesktop_UpdateViaIdentityApplicationGroupExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktop))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a desktop.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaIdentityExpanded.cs
index 111c83e95e39..8f8e0b271d82 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/desktops/{desktopName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdDesktop_UpdateViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktop))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a desktop.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaJsonFilePath.cs
index e3b93b146132..8203c6292171 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/desktops/{desktopName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdDesktop_UpdateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktop))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a desktop.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaJsonString.cs
index b41705067ad5..595df5880908 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdDesktop_UpdateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/applicationGroups/{applicationGroupName}/desktops/{desktopName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdDesktop_UpdateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktop))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a desktop.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateExpanded.cs
index 3975c1ce94f2..db9c62d3f6e5 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdHostPool_UpdateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IHostPool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a host pool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateViaIdentityExpanded.cs
index f4f284c71253..7efd4732029e 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdHostPool_UpdateViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IHostPool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a host pool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateViaJsonFilePath.cs
index 578b401ea533..d00534cd4df6 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdHostPool_UpdateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IHostPool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a host pool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateViaJsonString.cs
index 67369fb6324f..c8957d8a4501 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdHostPool_UpdateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdHostPool_UpdateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IHostPool))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a host pool.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateExpanded.cs
index de60aa1ee15e..9b55bbfcf537 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdMsixPackage_UpdateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an MSIX Package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaIdentityExpanded.cs
index 528e42afc72a..f5f41dc1e8e9 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdMsixPackage_UpdateViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an MSIX Package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaIdentityHostPool.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaIdentityHostPool.cs
index 46dacfe2c32d..58c0518ead09 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaIdentityHostPool.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaIdentityHostPool.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdMsixPackage_UpdateViaIdentityHostPool", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an MSIX Package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaIdentityHostPoolExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaIdentityHostPoolExpanded.cs
index c2ea0a6f829b..3cd913096ba3 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaIdentityHostPoolExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaIdentityHostPoolExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdMsixPackage_UpdateViaIdentityHostPoolExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an MSIX Package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaJsonFilePath.cs
index 7b0858762d8d..5b9992ab942d 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdMsixPackage_UpdateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an MSIX Package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaJsonString.cs
index 405b3e6b581f..8a44cf323849 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdMsixPackage_UpdateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdMsixPackage_UpdateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IMsixPackage))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update an MSIX Package.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateExpanded.cs
index 938112540f15..12f286d6c9fe 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlanPersonalSchedule_UpdateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a ScalingPlanPersonalSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaIdentityExpanded.cs
index dbe0109ef984..5b778a49e780 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlanPersonalSchedule_UpdateViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a ScalingPlanPersonalSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaIdentityScalingPlan.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaIdentityScalingPlan.cs
index 79081630293c..8f664b02c481 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaIdentityScalingPlan.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaIdentityScalingPlan.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlanPersonalSchedule_UpdateViaIdentityScalingPlan", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a ScalingPlanPersonalSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaIdentityScalingPlanExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaIdentityScalingPlanExpanded.cs
index b8fb7c89ef6b..839487ed424d 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaIdentityScalingPlanExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaIdentityScalingPlanExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlanPersonalSchedule_UpdateViaIdentityScalingPlanExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a ScalingPlanPersonalSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaJsonFilePath.cs
index 210c6e2d66b0..a247cf39532c 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlanPersonalSchedule_UpdateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a ScalingPlanPersonalSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaJsonString.cs
index 0793e979ac70..f919a7072a94 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPersonalSchedule_UpdateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/personalSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlanPersonalSchedule_UpdateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPersonalSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a ScalingPlanPersonalSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateExpanded.cs
index 0cc8f365577d..eae6e465c90e 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlanPooledSchedule_UpdateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a ScalingPlanPooledSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaIdentityExpanded.cs
index 9246635aec40..5da88883e8ee 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlanPooledSchedule_UpdateViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a ScalingPlanPooledSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaIdentityScalingPlan.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaIdentityScalingPlan.cs
index 50aa82303f0e..662d60eb264b 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaIdentityScalingPlan.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaIdentityScalingPlan.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlanPooledSchedule_UpdateViaIdentityScalingPlan", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a ScalingPlanPooledSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaIdentityScalingPlanExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaIdentityScalingPlanExpanded.cs
index 0fc6dee67e69..84f4180cced4 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaIdentityScalingPlanExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaIdentityScalingPlanExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlanPooledSchedule_UpdateViaIdentityScalingPlanExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a ScalingPlanPooledSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaJsonFilePath.cs
index eb03ee94b819..5049cbec753b 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlanPooledSchedule_UpdateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a ScalingPlanPooledSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaJsonString.cs
index 4d062f584121..0c5b67c49e0c 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlanPooledSchedule_UpdateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}/pooledSchedules/{scalingPlanScheduleName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlanPooledSchedule_UpdateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlanPooledSchedule))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a ScalingPlanPooledSchedule.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateExpanded.cs
index 7dbf95194f6c..9525ebb25edc 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlan_UpdateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlan))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a scaling plan.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateViaIdentityExpanded.cs
index 80e017d9a9c8..079ebce09bae 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlan_UpdateViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlan))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a scaling plan.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateViaJsonFilePath.cs
index d58a318da630..95b1e64d7f55 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlan_UpdateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlan))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a scaling plan.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateViaJsonString.cs
index a04ea2c9b0fc..b75aa663e567 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdScalingPlan_UpdateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/scalingPlans/{scalingPlanName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdScalingPlan_UpdateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IScalingPlan))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a scaling plan.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateExpanded.cs
index d63bf4dbb502..60152c6584ac 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdSessionHost_UpdateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.ISessionHost))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a session host.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaIdentityExpanded.cs
index f0c2671eeda3..bc890cc48a8b 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdSessionHost_UpdateViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.ISessionHost))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a session host.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaIdentityHostPool.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaIdentityHostPool.cs
index f21eb0ed4ae3..da851c86d8e9 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaIdentityHostPool.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaIdentityHostPool.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdSessionHost_UpdateViaIdentityHostPool", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.ISessionHost))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a session host.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaIdentityHostPoolExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaIdentityHostPoolExpanded.cs
index edffbddabb78..24042052e8c5 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaIdentityHostPoolExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaIdentityHostPoolExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdSessionHost_UpdateViaIdentityHostPoolExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.ISessionHost))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a session host.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaJsonFilePath.cs
index eeb5a3d0f554..6346c07dd9e0 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdSessionHost_UpdateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.ISessionHost))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a session host.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaJsonString.cs
index 3d622e3e8095..608c4e600310 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdSessionHost_UpdateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/sessionHosts/{sessionHostName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdSessionHost_UpdateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.ISessionHost))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a session host.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateExpanded.cs
index d99faba04275..4ec6c3a83d50 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdWorkspace_UpdateExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IWorkspace))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a workspace.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateViaIdentityExpanded.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateViaIdentityExpanded.cs
index 6292b3ae64ee..6782c09c5ea7 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateViaIdentityExpanded.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateViaIdentityExpanded.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdWorkspace_UpdateViaIdentityExpanded", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IWorkspace))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a workspace.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateViaJsonFilePath.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateViaJsonFilePath.cs
index b8f0f030c577..2ddd47f90ed5 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateViaJsonFilePath.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateViaJsonFilePath.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdWorkspace_UpdateViaJsonFilePath", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IWorkspace))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a workspace.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateViaJsonString.cs b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateViaJsonString.cs
index 96c39bf229bb..c9f171c1dd31 100644
--- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateViaJsonString.cs
+++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/generated/cmdlets/UpdateAzWvdWorkspace_UpdateViaJsonString.cs
@@ -15,7 +15,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Cmdlets
/// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName}"
///
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzWvdWorkspace_UpdateViaJsonString", SupportsShouldProcess = true)]
- [Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.PreviewMessage("This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409)", "2024-11-19T00:00:00.000Z")]
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IWorkspace))]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Description(@"update a workspace.")]
[global::Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Generated]
diff --git a/src/DesktopVirtualization/DesktopVirtualization/Az.DesktopVirtualization.psd1 b/src/DesktopVirtualization/DesktopVirtualization/Az.DesktopVirtualization.psd1
index 3cddb1c282dc..2efad1787183 100644
--- a/src/DesktopVirtualization/DesktopVirtualization/Az.DesktopVirtualization.psd1
+++ b/src/DesktopVirtualization/DesktopVirtualization/Az.DesktopVirtualization.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 11/5/2024
+# Generated on: 11/12/2024
#
@{
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '3.0.4'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '3.0.5'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies =
diff --git a/src/DnsResolver/DnsResolver.Autorest/Az.DnsResolver.format.ps1xml b/src/DnsResolver/DnsResolver.Autorest/Az.DnsResolver.format.ps1xml
index 5f44e91e893d..10afe77ab8bf 100644
--- a/src/DnsResolver/DnsResolver.Autorest/Az.DnsResolver.format.ps1xml
+++ b/src/DnsResolver/DnsResolver.Autorest/Az.DnsResolver.format.ps1xml
@@ -11,9 +11,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
@@ -42,9 +54,21 @@
DnsForwardingRulesetName
+
+ DnsResolverDomainListName
+
DnsResolverName
+
+ DnsResolverPolicyName
+
+
+ DnsResolverPolicyVirtualNetworkLinkName
+
+
+ DnsSecurityRuleName
+
ForwardingRuleName
@@ -72,15 +96,67 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.ProxyResource
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.ErrorDetail
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.ErrorDetail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Code
+
+
+ Message
+
+
+ Target
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.ProxyResource
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.ProxyResource
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.ProxyResource
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -88,15 +164,33 @@
Name
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.Resource
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.Resource
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.Resource
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.Resource
@@ -116,9 +210,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.SystemData
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.SystemData
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.SystemData
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.SystemData
@@ -145,22 +239,638 @@
- CreatedAt
+ CreatedAt
+
+
+ CreatedBy
+
+
+ CreatedByType
+
+
+ LastModifiedAt
+
+
+ LastModifiedBy
+
+
+ LastModifiedByType
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.TrackedResource
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.TrackedResource
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Name
+
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
+
+ Location
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.TrackedResourceTags
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.TrackedResourceTags
+
+
+
+
+
+
+
+
+
+
+
+ Item
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.CloudErrorBody
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.CloudErrorBody
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Code
+
+
+ Message
+
+
+ Target
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsForwardingRuleset
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsForwardingRuleset
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Location
+
+
+ Name
+
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
+
+ Etag
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsForwardingRulesetListResult
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsForwardingRulesetListResult
+
+
+
+
+
+
+
+
+
+
+
+ NextLink
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsForwardingRulesetPatchTags
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsForwardingRulesetPatchTags
+
+
+
+
+
+
+
+
+
+
+
+ Item
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsForwardingRulesetProperties
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsForwardingRulesetProperties
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ProvisioningState
+
+
+ ResourceGuid
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolver
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolver
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Location
+
+
+ Name
+
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
+
+ Etag
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverDomainList
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverDomainList
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Location
+
+
+ Name
+
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
+
+ Etag
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverDomainListPatchProperties
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverDomainListPatchProperties
+
+
+
+
+
+
+
+
+
+
+
+ Domain
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverDomainListPatchTags
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverDomainListPatchTags
+
+
+
+
+
+
+
+
+
+
+
+ Item
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverDomainListProperties
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverDomainListProperties
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Domain
+
+
+ ProvisioningState
+
+
+ ResourceGuid
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverDomainListResult
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverDomainListResult
+
+
+
+
+
+
+
+
+
+
+
+ NextLink
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverListResult
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverListResult
+
+
+
+
+
+
+
+
+
+
+
+ NextLink
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPatchTags
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPatchTags
+
+
+
+
+
+
+
+
+
+
+
+ Item
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicy
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Location
+
+
+ Name
+
+
+ SystemDataCreatedAt
- CreatedBy
+ SystemDataCreatedBy
- CreatedByType
+ SystemDataCreatedByType
- LastModifiedAt
+ SystemDataLastModifiedAt
- LastModifiedBy
+ SystemDataLastModifiedBy
- LastModifiedByType
+ SystemDataLastModifiedByType
+
+
+ Etag
@@ -168,27 +878,21 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.TrackedResource
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyListResult
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.TrackedResource
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyListResult
-
-
-
-
+
- Name
-
-
- Location
+ NextLink
@@ -196,9 +900,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.TrackedResourceTags
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyPatchTags
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.TrackedResourceTags
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyPatchTags
@@ -218,33 +922,27 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.CloudErrorBody
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyProperties
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.CloudErrorBody
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyProperties
-
-
-
-
+
-
+
- Code
-
-
- Message
+ ProvisioningState
- Target
+ ResourceGuid
@@ -252,9 +950,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsForwardingRuleset
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyVirtualNetworkLink
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsForwardingRuleset
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyVirtualNetworkLink
@@ -264,6 +962,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -277,6 +993,24 @@
Name
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
Etag
@@ -286,9 +1020,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsForwardingRulesetListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyVirtualNetworkLinkListResult
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsForwardingRulesetListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyVirtualNetworkLinkListResult
@@ -308,9 +1042,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsForwardingRulesetPatchTags
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyVirtualNetworkLinkPatchTags
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsForwardingRulesetPatchTags
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyVirtualNetworkLinkPatchTags
@@ -330,12 +1064,37 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsForwardingRulesetProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyVirtualNetworkLinkProperties
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverPolicyVirtualNetworkLinkProperties
+
+
+
+
+
+
+
+
+
+
+
+ ProvisioningState
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverProperties
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsForwardingRulesetProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsResolverProperties
+
+
+
@@ -346,6 +1105,9 @@
+
+ DnsResolverState
+
ProvisioningState
@@ -358,9 +1120,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsResolver
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsSecurityRule
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsResolver
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsSecurityRule
@@ -370,6 +1132,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -383,6 +1163,24 @@
Name
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
Etag
@@ -392,9 +1190,37 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsResolverListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsSecurityRuleAction
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsSecurityRuleAction
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ActionType
+
+
+ BlockResponseCode
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsSecurityRuleListResult
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsResolverListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsSecurityRuleListResult
@@ -414,9 +1240,37 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsResolverPatchTags
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsSecurityRulePatchProperties
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsSecurityRulePatchProperties
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DnsSecurityRuleState
+
+
+ Priority
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsSecurityRulePatchTags
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsResolverPatchTags
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsSecurityRulePatchTags
@@ -436,33 +1290,33 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsResolverProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsSecurityRuleProperties
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.DnsResolverProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.DnsSecurityRuleProperties
-
+
-
+
-
+
- DnsResolverState
+ DnsSecurityRuleState
- ProvisioningState
+ Priority
- ResourceGuid
+ ProvisioningState
@@ -470,15 +1324,33 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ForwardingRule
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ForwardingRule
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ForwardingRule
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ForwardingRule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -489,6 +1361,24 @@
Name
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
Etag
@@ -498,9 +1388,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ForwardingRuleListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ForwardingRuleListResult
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ForwardingRuleListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ForwardingRuleListResult
@@ -520,9 +1410,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ForwardingRulePatchProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ForwardingRulePatchProperties
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ForwardingRulePatchProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ForwardingRulePatchProperties
@@ -542,9 +1432,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ForwardingRulePatchPropertiesMetadata
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ForwardingRulePatchPropertiesMetadata
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ForwardingRulePatchPropertiesMetadata
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ForwardingRulePatchPropertiesMetadata
@@ -564,9 +1454,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ForwardingRuleProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ForwardingRuleProperties
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ForwardingRuleProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ForwardingRuleProperties
@@ -598,9 +1488,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ForwardingRulePropertiesMetadata
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ForwardingRulePropertiesMetadata
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ForwardingRulePropertiesMetadata
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ForwardingRulePropertiesMetadata
@@ -620,9 +1510,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.InboundEndpoint
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.InboundEndpoint
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.InboundEndpoint
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.InboundEndpoint
@@ -632,6 +1522,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -645,6 +1553,24 @@
Name
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
Etag
@@ -654,9 +1580,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.InboundEndpointListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.InboundEndpointListResult
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.InboundEndpointListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.InboundEndpointListResult
@@ -676,9 +1602,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.InboundEndpointPatchTags
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.InboundEndpointPatchTags
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.InboundEndpointPatchTags
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.InboundEndpointPatchTags
@@ -698,9 +1624,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.InboundEndpointProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.InboundEndpointProperties
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.InboundEndpointProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.InboundEndpointProperties
@@ -726,9 +1652,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IPConfiguration
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IPConfiguration
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IPConfiguration
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IPConfiguration
@@ -754,9 +1680,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.OutboundEndpoint
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.OutboundEndpoint
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.OutboundEndpoint
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.OutboundEndpoint
@@ -766,6 +1692,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -779,6 +1723,24 @@
Name
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
Etag
@@ -788,9 +1750,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.OutboundEndpointListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.OutboundEndpointListResult
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.OutboundEndpointListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.OutboundEndpointListResult
@@ -810,9 +1772,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.OutboundEndpointPatchTags
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.OutboundEndpointPatchTags
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.OutboundEndpointPatchTags
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.OutboundEndpointPatchTags
@@ -832,9 +1794,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.OutboundEndpointProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.OutboundEndpointProperties
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.OutboundEndpointProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.OutboundEndpointProperties
@@ -860,9 +1822,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.SubResourceListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.SubResourceListResult
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.SubResourceListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.SubResourceListResult
@@ -882,9 +1844,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.TargetDnsServer
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.TargetDnsServer
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.TargetDnsServer
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.TargetDnsServer
@@ -910,9 +1872,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.VirtualNetworkDnsForwardingRulesetListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.VirtualNetworkDnsForwardingRulesetListResult
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.VirtualNetworkDnsForwardingRulesetListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.VirtualNetworkDnsForwardingRulesetListResult
@@ -932,15 +1894,33 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.VirtualNetworkLink
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.VirtualNetworkLink
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.VirtualNetworkLink
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.VirtualNetworkLink
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -951,6 +1931,24 @@
Name
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
Etag
@@ -960,9 +1958,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.VirtualNetworkLinkListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.VirtualNetworkLinkListResult
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.VirtualNetworkLinkListResult
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.VirtualNetworkLinkListResult
@@ -982,9 +1980,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.VirtualNetworkLinkPatchPropertiesMetadata
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.VirtualNetworkLinkPatchPropertiesMetadata
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.VirtualNetworkLinkPatchPropertiesMetadata
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.VirtualNetworkLinkPatchPropertiesMetadata
@@ -1004,9 +2002,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.VirtualNetworkLinkProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.VirtualNetworkLinkProperties
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.VirtualNetworkLinkProperties
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.VirtualNetworkLinkProperties
@@ -1026,9 +2024,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.VirtualNetworkLinkPropertiesMetadata
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.VirtualNetworkLinkPropertiesMetadata
- Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.VirtualNetworkLinkPropertiesMetadata
+ Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.VirtualNetworkLinkPropertiesMetadata
diff --git a/src/DnsResolver/DnsResolver.Autorest/Az.DnsResolver.psd1 b/src/DnsResolver/DnsResolver.Autorest/Az.DnsResolver.psd1
index 5f018fbe227a..1cca5ee40fec 100644
--- a/src/DnsResolver/DnsResolver.Autorest/Az.DnsResolver.psd1
+++ b/src/DnsResolver/DnsResolver.Autorest/Az.DnsResolver.psd1
@@ -1,7 +1,7 @@
@{
GUID = '88e239b3-f615-4018-adf3-f0952a0f46a8'
RootModule = './Az.DnsResolver.psm1'
- ModuleVersion = '0.2.1'
+ ModuleVersion = '0.2.9'
CompatiblePSEditions = 'Core', 'Desktop'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
@@ -11,7 +11,7 @@
DotNetFrameworkVersion = '4.7.2'
RequiredAssemblies = './bin/Az.DnsResolver.private.dll'
FormatsToProcess = './Az.DnsResolver.format.ps1xml'
- FunctionsToExport = 'Get-AzDnsForwardingRuleset', 'Get-AzDnsForwardingRulesetForwardingRule', 'Get-AzDnsForwardingRulesetVirtualNetworkLink', 'Get-AzDnsResolver', 'Get-AzDnsResolverInboundEndpoint', 'Get-AzDnsResolverOutboundEndpoint', 'New-AzDnsForwardingRuleset', 'New-AzDnsForwardingRulesetForwardingRule', 'New-AzDnsForwardingRulesetVirtualNetworkLink', 'New-AzDnsResolver', 'New-AzDnsResolverInboundEndpoint', 'New-AzDnsResolverIPConfigurationObject', 'New-AzDnsResolverOutboundEndpoint', 'New-AzDnsResolverTargetDnsServerObject', 'Remove-AzDnsForwardingRuleset', 'Remove-AzDnsForwardingRulesetForwardingRule', 'Remove-AzDnsForwardingRulesetVirtualNetworkLink', 'Remove-AzDnsResolver', 'Remove-AzDnsResolverInboundEndpoint', 'Remove-AzDnsResolverOutboundEndpoint', 'Update-AzDnsForwardingRuleset', 'Update-AzDnsForwardingRulesetForwardingRule', 'Update-AzDnsForwardingRulesetVirtualNetworkLink', 'Update-AzDnsResolver', 'Update-AzDnsResolverInboundEndpoint', 'Update-AzDnsResolverOutboundEndpoint', '*'
+ FunctionsToExport = 'Get-AzDnsForwardingRuleset', 'Get-AzDnsForwardingRulesetForwardingRule', 'Get-AzDnsForwardingRulesetVirtualNetworkLink', 'Get-AzDnsResolver', 'Get-AzDnsResolverDomainList', 'Get-AzDnsResolverInboundEndpoint', 'Get-AzDnsResolverOutboundEndpoint', 'Get-AzDnsResolverPolicy', 'Get-AzDnsResolverPolicyDnsSecurityRule', 'Get-AzDnsResolverPolicyVirtualNetworkLink', 'New-AzDnsForwardingRuleset', 'New-AzDnsForwardingRulesetForwardingRule', 'New-AzDnsForwardingRulesetVirtualNetworkLink', 'New-AzDnsResolver', 'New-AzDnsResolverDomainList', 'New-AzDnsResolverInboundEndpoint', 'New-AzDnsResolverIPConfigurationObject', 'New-AzDnsResolverOutboundEndpoint', 'New-AzDnsResolverPolicy', 'New-AzDnsResolverPolicyDnsSecurityRule', 'New-AzDnsResolverPolicyVirtualNetworkLink', 'New-AzDnsResolverTargetDnsServerObject', 'Remove-AzDnsForwardingRuleset', 'Remove-AzDnsForwardingRulesetForwardingRule', 'Remove-AzDnsForwardingRulesetVirtualNetworkLink', 'Remove-AzDnsResolver', 'Remove-AzDnsResolverDomainList', 'Remove-AzDnsResolverInboundEndpoint', 'Remove-AzDnsResolverOutboundEndpoint', 'Remove-AzDnsResolverPolicy', 'Remove-AzDnsResolverPolicyDnsSecurityRule', 'Remove-AzDnsResolverPolicyVirtualNetworkLink', 'Update-AzDnsForwardingRuleset', 'Update-AzDnsForwardingRulesetForwardingRule', 'Update-AzDnsForwardingRulesetVirtualNetworkLink', 'Update-AzDnsResolver', 'Update-AzDnsResolverDomainList', 'Update-AzDnsResolverInboundEndpoint', 'Update-AzDnsResolverOutboundEndpoint', 'Update-AzDnsResolverPolicy', 'Update-AzDnsResolverPolicyDnsSecurityRule', 'Update-AzDnsResolverPolicyVirtualNetworkLink', '*'
AliasesToExport = '*'
PrivateData = @{
PSData = @{
diff --git a/src/DnsResolver/DnsResolver.Autorest/README.md b/src/DnsResolver/DnsResolver.Autorest/README.md
index d93edb2e4a4f..9784ee68e3cd 100644
--- a/src/DnsResolver/DnsResolver.Autorest/README.md
+++ b/src/DnsResolver/DnsResolver.Autorest/README.md
@@ -67,13 +67,14 @@ In this directory, run AutoRest:
> see https://aka.ms/autorest
``` yaml
-commit: 37072829f795ce840b8085035e8adf4721602f34
+commit: 6286ea80b3ac7eecfc2f230d65b2034a656f10bf
require:
- $(this-folder)/../../readme.azure.noprofile.md
input-file:
- - $(repo)/specification/dnsresolver/resource-manager/Microsoft.Network/stable/2022-07-01/dnsresolver.json
+ - $(repo)/specification/dnsresolver/resource-manager/Microsoft.Network/preview/2023-07-01-preview/dnsresolver.json
+ - $(repo)/specification/dnsresolver/resource-manager/Microsoft.Network/preview/2023-07-01-preview/dnsresolverpolicy.json
-module-version: 0.2.1
+module-version: 0.2.9
title: DnsResolver
subject-prefix: DnsResolver
@@ -88,7 +89,23 @@ use-extension:
directive:
- where:
- subject: ForwardingRule|VirtualNetworkLink
+ subject: DnsResolverPolicyVirtualNetworkLink
+ set:
+ subject-prefix: ''
+ - where:
+ subject: DnsResolverPolicy
+ set:
+ subject-prefix: ''
+ - where:
+ subject: DnsResolverDomainList
+ set:
+ subject-prefix: ''
+ - where:
+ subject: DnsSecurityRule
+ set:
+ subject-prefix: 'DnsResolverPolicy'
+ - where:
+ subject: ^(ForwardingRule|VirtualNetworkLink)$
set:
subject-prefix: DnsForwardingRuleset
- where:
diff --git a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsForwardingRulesets-forwardingRules.json b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsForwardingRulesets-forwardingRules.json
index 9a5507651a41..f77a12a5b62e 100644
--- a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsForwardingRulesets-forwardingRules.json
+++ b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsForwardingRulesets-forwardingRules.json
@@ -1,6 +1,6 @@
{
"resourceType": "dnsForwardingRulesets/forwardingRules",
- "apiVersion": "2022-07-01",
+ "apiVersion": "2023-07-01-preview",
"learnMore": {
"url": "https://learn.microsoft.com/powershell/module/az.dnsresolver"
},
diff --git a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsForwardingRulesets-virtualNetworkLinks.json b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsForwardingRulesets-virtualNetworkLinks.json
index 5b97c00ecfb3..5caee06682fc 100644
--- a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsForwardingRulesets-virtualNetworkLinks.json
+++ b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsForwardingRulesets-virtualNetworkLinks.json
@@ -1,6 +1,6 @@
{
"resourceType": "dnsForwardingRulesets/virtualNetworkLinks",
- "apiVersion": "2022-07-01",
+ "apiVersion": "2023-07-01-preview",
"learnMore": {
"url": "https://learn.microsoft.com/powershell/module/az.dnsresolver"
},
diff --git a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsForwardingRulesets.json b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsForwardingRulesets.json
index bdf86afe41c0..d21009e56ef7 100644
--- a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsForwardingRulesets.json
+++ b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsForwardingRulesets.json
@@ -1,6 +1,6 @@
{
"resourceType": "dnsForwardingRulesets",
- "apiVersion": "2022-07-01",
+ "apiVersion": "2023-07-01-preview",
"learnMore": {
"url": "https://learn.microsoft.com/powershell/module/az.dnsresolver"
},
diff --git a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolverDomainLists.json b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolverDomainLists.json
new file mode 100644
index 000000000000..bb05c13b53ff
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolverDomainLists.json
@@ -0,0 +1,85 @@
+{
+ "resourceType": "dnsResolverDomainLists",
+ "apiVersion": "2023-07-01-preview",
+ "learnMore": {
+ "url": "https://learn.microsoft.com/powershell/module/az.dnsresolver"
+ },
+ "commands": [
+ {
+ "name": "Get-AzDnsResolverDomainList",
+ "description": "Gets properties of a DNS resolver domain list.",
+ "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverDomainLists/{dnsResolverDomainListName}",
+ "help": {
+ "learnMore": {
+ "url": "https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsresolverdomainlist"
+ },
+ "parameterSets": [
+ {
+ "parameters": [
+ "-Name ",
+ "-ResourceGroupName ",
+ "[-SubscriptionId ]"
+ ]
+ }
+ ]
+ },
+ "examples": [
+ {
+ "description": "Gets properties of a DNS resolver domain list.",
+ "parameters": [
+ {
+ "name": "-Name",
+ "value": "[Path.dnsResolverDomainListName]"
+ },
+ {
+ "name": "-ResourceGroupName",
+ "value": "[Path.resourceGroupName]"
+ },
+ {
+ "name": "-SubscriptionId",
+ "value": "[Path.subscriptionId]"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "Remove-AzDnsResolverDomainList",
+ "description": "Deletes a DNS resolver domain list.\nWARNING: This operation cannot be undone.",
+ "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverDomainLists/{dnsResolverDomainListName}",
+ "help": {
+ "learnMore": {
+ "url": "https://learn.microsoft.com/powershell/module/az.dnsresolver/remove-azdnsresolverdomainlist"
+ },
+ "parameterSets": [
+ {
+ "parameters": [
+ "-Name ",
+ "-ResourceGroupName ",
+ "[-SubscriptionId ]"
+ ]
+ }
+ ]
+ },
+ "examples": [
+ {
+ "description": "Deletes a DNS resolver domain list. WARNING: This operation cannot be undone.",
+ "parameters": [
+ {
+ "name": "-Name",
+ "value": "[Path.dnsResolverDomainListName]"
+ },
+ {
+ "name": "-ResourceGroupName",
+ "value": "[Path.resourceGroupName]"
+ },
+ {
+ "name": "-SubscriptionId",
+ "value": "[Path.subscriptionId]"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
diff --git a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolverPolicies-dnsSecurityRules.json b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolverPolicies-dnsSecurityRules.json
new file mode 100644
index 000000000000..4d4099244ddb
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolverPolicies-dnsSecurityRules.json
@@ -0,0 +1,95 @@
+{
+ "resourceType": "dnsResolverPolicies/dnsSecurityRules",
+ "apiVersion": "2023-07-01-preview",
+ "learnMore": {
+ "url": "https://learn.microsoft.com/powershell/module/az.dnsresolver"
+ },
+ "commands": [
+ {
+ "name": "Get-AzDnsResolverPolicyDnsSecurityRule",
+ "description": "Gets properties of a DNS security rule for a DNS resolver policy.",
+ "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverPolicies/{dnsResolverPolicyName}/dnsSecurityRules/{dnsSecurityRuleName}",
+ "help": {
+ "learnMore": {
+ "url": "https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsresolverpolicydnssecurityrule"
+ },
+ "parameterSets": [
+ {
+ "parameters": [
+ "-DnsResolverPolicyName ",
+ "-Name ",
+ "-ResourceGroupName ",
+ "[-SubscriptionId ]"
+ ]
+ }
+ ]
+ },
+ "examples": [
+ {
+ "description": "Gets properties of a DNS security rule for a DNS resolver policy.",
+ "parameters": [
+ {
+ "name": "-DnsResolverPolicyName",
+ "value": "[Path.dnsResolverPolicyName]"
+ },
+ {
+ "name": "-Name",
+ "value": "[Path.dnsSecurityRuleName]"
+ },
+ {
+ "name": "-ResourceGroupName",
+ "value": "[Path.resourceGroupName]"
+ },
+ {
+ "name": "-SubscriptionId",
+ "value": "[Path.subscriptionId]"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "Remove-AzDnsResolverPolicyDnsSecurityRule",
+ "description": "Deletes a DNS security rule for a DNS resolver policy.\nWARNING: This operation cannot be undone.",
+ "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverPolicies/{dnsResolverPolicyName}/dnsSecurityRules/{dnsSecurityRuleName}",
+ "help": {
+ "learnMore": {
+ "url": "https://learn.microsoft.com/powershell/module/az.dnsresolver/remove-azdnsresolverpolicydnssecurityrule"
+ },
+ "parameterSets": [
+ {
+ "parameters": [
+ "-DnsResolverPolicyName ",
+ "-Name ",
+ "-ResourceGroupName ",
+ "[-SubscriptionId ]"
+ ]
+ }
+ ]
+ },
+ "examples": [
+ {
+ "description": "Deletes a DNS security rule for a DNS resolver policy. WARNING: This operation cannot be undone.",
+ "parameters": [
+ {
+ "name": "-DnsResolverPolicyName",
+ "value": "[Path.dnsResolverPolicyName]"
+ },
+ {
+ "name": "-Name",
+ "value": "[Path.dnsSecurityRuleName]"
+ },
+ {
+ "name": "-ResourceGroupName",
+ "value": "[Path.resourceGroupName]"
+ },
+ {
+ "name": "-SubscriptionId",
+ "value": "[Path.subscriptionId]"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
diff --git a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolverPolicies-virtualNetworkLinks.json b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolverPolicies-virtualNetworkLinks.json
new file mode 100644
index 000000000000..c4e0b9b24a6a
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolverPolicies-virtualNetworkLinks.json
@@ -0,0 +1,95 @@
+{
+ "resourceType": "dnsResolverPolicies/virtualNetworkLinks",
+ "apiVersion": "2023-07-01-preview",
+ "learnMore": {
+ "url": "https://learn.microsoft.com/powershell/module/az.dnsresolver"
+ },
+ "commands": [
+ {
+ "name": "Get-AzDnsResolverPolicyVirtualNetworkLink",
+ "description": "Gets properties of a DNS resolver policy virtual network link.",
+ "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverPolicies/{dnsResolverPolicyName}/virtualNetworkLinks/{dnsResolverPolicyVirtualNetworkLinkName}",
+ "help": {
+ "learnMore": {
+ "url": "https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsresolverpolicyvirtualnetworklink"
+ },
+ "parameterSets": [
+ {
+ "parameters": [
+ "-DnsResolverPolicyName ",
+ "-Name ",
+ "-ResourceGroupName ",
+ "[-SubscriptionId ]"
+ ]
+ }
+ ]
+ },
+ "examples": [
+ {
+ "description": "Gets properties of a DNS resolver policy virtual network link.",
+ "parameters": [
+ {
+ "name": "-DnsResolverPolicyName",
+ "value": "[Path.dnsResolverPolicyName]"
+ },
+ {
+ "name": "-Name",
+ "value": "[Path.dnsResolverPolicyVirtualNetworkLinkName]"
+ },
+ {
+ "name": "-ResourceGroupName",
+ "value": "[Path.resourceGroupName]"
+ },
+ {
+ "name": "-SubscriptionId",
+ "value": "[Path.subscriptionId]"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "Remove-AzDnsResolverPolicyVirtualNetworkLink",
+ "description": "Deletes a DNS resolver policy virtual network link.\nWARNING: This operation cannot be undone.",
+ "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverPolicies/{dnsResolverPolicyName}/virtualNetworkLinks/{dnsResolverPolicyVirtualNetworkLinkName}",
+ "help": {
+ "learnMore": {
+ "url": "https://learn.microsoft.com/powershell/module/az.dnsresolver/remove-azdnsresolverpolicyvirtualnetworklink"
+ },
+ "parameterSets": [
+ {
+ "parameters": [
+ "-DnsResolverPolicyName ",
+ "-Name ",
+ "-ResourceGroupName ",
+ "[-SubscriptionId ]"
+ ]
+ }
+ ]
+ },
+ "examples": [
+ {
+ "description": "Deletes a DNS resolver policy virtual network link. WARNING: This operation cannot be undone.",
+ "parameters": [
+ {
+ "name": "-DnsResolverPolicyName",
+ "value": "[Path.dnsResolverPolicyName]"
+ },
+ {
+ "name": "-Name",
+ "value": "[Path.dnsResolverPolicyVirtualNetworkLinkName]"
+ },
+ {
+ "name": "-ResourceGroupName",
+ "value": "[Path.resourceGroupName]"
+ },
+ {
+ "name": "-SubscriptionId",
+ "value": "[Path.subscriptionId]"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
diff --git a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolverPolicies.json b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolverPolicies.json
new file mode 100644
index 000000000000..c5c576ac208a
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolverPolicies.json
@@ -0,0 +1,85 @@
+{
+ "resourceType": "dnsResolverPolicies",
+ "apiVersion": "2023-07-01-preview",
+ "learnMore": {
+ "url": "https://learn.microsoft.com/powershell/module/az.dnsresolver"
+ },
+ "commands": [
+ {
+ "name": "Get-AzDnsResolverPolicy",
+ "description": "Gets properties of a DNS resolver policy.",
+ "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverPolicies/{dnsResolverPolicyName}",
+ "help": {
+ "learnMore": {
+ "url": "https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsresolverpolicy"
+ },
+ "parameterSets": [
+ {
+ "parameters": [
+ "-Name ",
+ "-ResourceGroupName ",
+ "[-SubscriptionId ]"
+ ]
+ }
+ ]
+ },
+ "examples": [
+ {
+ "description": "Gets properties of a DNS resolver policy.",
+ "parameters": [
+ {
+ "name": "-Name",
+ "value": "[Path.dnsResolverPolicyName]"
+ },
+ {
+ "name": "-ResourceGroupName",
+ "value": "[Path.resourceGroupName]"
+ },
+ {
+ "name": "-SubscriptionId",
+ "value": "[Path.subscriptionId]"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "Remove-AzDnsResolverPolicy",
+ "description": "Deletes a DNS resolver policy.\nWARNING: This operation cannot be undone.",
+ "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolverPolicies/{dnsResolverPolicyName}",
+ "help": {
+ "learnMore": {
+ "url": "https://learn.microsoft.com/powershell/module/az.dnsresolver/remove-azdnsresolverpolicy"
+ },
+ "parameterSets": [
+ {
+ "parameters": [
+ "-Name ",
+ "-ResourceGroupName ",
+ "[-SubscriptionId ]"
+ ]
+ }
+ ]
+ },
+ "examples": [
+ {
+ "description": "Deletes a DNS resolver policy. WARNING: This operation cannot be undone.",
+ "parameters": [
+ {
+ "name": "-Name",
+ "value": "[Path.dnsResolverPolicyName]"
+ },
+ {
+ "name": "-ResourceGroupName",
+ "value": "[Path.resourceGroupName]"
+ },
+ {
+ "name": "-SubscriptionId",
+ "value": "[Path.subscriptionId]"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
diff --git a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolvers-inboundEndpoints.json b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolvers-inboundEndpoints.json
index 272a477dbe62..b3884546a71e 100644
--- a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolvers-inboundEndpoints.json
+++ b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolvers-inboundEndpoints.json
@@ -1,6 +1,6 @@
{
"resourceType": "dnsResolvers/inboundEndpoints",
- "apiVersion": "2022-07-01",
+ "apiVersion": "2023-07-01-preview",
"learnMore": {
"url": "https://learn.microsoft.com/powershell/module/az.dnsresolver"
},
diff --git a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolvers-outboundEndpoints.json b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolvers-outboundEndpoints.json
index f20b4ff3278c..24dfdf15ced6 100644
--- a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolvers-outboundEndpoints.json
+++ b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolvers-outboundEndpoints.json
@@ -1,6 +1,6 @@
{
"resourceType": "dnsResolvers/outboundEndpoints",
- "apiVersion": "2022-07-01",
+ "apiVersion": "2023-07-01-preview",
"learnMore": {
"url": "https://learn.microsoft.com/powershell/module/az.dnsresolver"
},
diff --git a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolvers.json b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolvers.json
index b83d61d53adc..1a48e64a4617 100644
--- a/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolvers.json
+++ b/src/DnsResolver/DnsResolver.Autorest/UX/Microsoft.Network/dnsResolvers.json
@@ -1,6 +1,6 @@
{
"resourceType": "dnsResolvers",
- "apiVersion": "2022-07-01",
+ "apiVersion": "2023-07-01-preview",
"learnMore": {
"url": "https://learn.microsoft.com/powershell/module/az.dnsresolver"
},
diff --git a/src/DnsResolver/DnsResolver.Autorest/build-module.ps1 b/src/DnsResolver/DnsResolver.Autorest/build-module.ps1
index 06a44d848dab..a2b66b2a9fd9 100644
--- a/src/DnsResolver/DnsResolver.Autorest/build-module.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/build-module.ps1
@@ -12,7 +12,7 @@
# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
# is regenerated.
# ----------------------------------------------------------------------------------
-param([switch]$Isolated, [switch]$Run, [switch]$Test, [switch]$Docs, [switch]$Pack, [switch]$Code, [switch]$Release, [switch]$Debugger, [switch]$NoDocs)
+param([switch]$Isolated, [switch]$Run, [switch]$Test, [switch]$Docs, [switch]$Pack, [switch]$Code, [switch]$Release, [switch]$Debugger, [switch]$NoDocs, [Switch]$DisableAfterBuildTasks)
$ErrorActionPreference = 'Stop'
if($PSEdition -ne 'Core') {
@@ -67,6 +67,8 @@ if(-not $Isolated -and -not $Debugger) {
$binFolder = Join-Path $PSScriptRoot 'bin'
$objFolder = Join-Path $PSScriptRoot 'obj'
+$isAzure = [System.Convert]::ToBoolean('true')
+
if(-not $Debugger) {
Write-Host -ForegroundColor Green 'Cleaning build folders...'
$null = Remove-Item -Recurse -ErrorAction SilentlyContinue -Path $binFolder, $objFolder
@@ -143,7 +145,7 @@ if($NoDocs) {
$null = Get-ChildItem -Path $docsFolder -Recurse -Exclude 'README.md' | Remove-Item -Recurse -ErrorAction SilentlyContinue
}
$null = New-Item -ItemType Directory -Force -Path $docsFolder
- $addComplexInterfaceInfo = ![System.Convert]::ToBoolean('true')
+ $addComplexInterfaceInfo = !$isAzure
Export-ProxyCmdlet -ModuleName $moduleName -ModulePath $modulePaths -ExportsFolder $exportsFolder -InternalFolder $internalFolder -ModuleDescription $moduleDescription -DocsFolder $docsFolder -ExamplesFolder $examplesFolder -ModuleGuid $guid -AddComplexInterfaceInfo:$addComplexInterfaceInfo
}
@@ -169,4 +171,13 @@ if (Test-Path (Join-Path $PSScriptRoot 'generate-portal-ux.ps1'))
. (Join-Path $PSScriptRoot 'generate-portal-ux.ps1')
}
-Write-Host -ForegroundColor Green '-------------Done-------------'
+if (-not $DisableAfterBuildTasks){
+ $afterBuildTasksPath = Join-Path $PSScriptRoot ''
+ $afterBuildTasksArgs = ConvertFrom-Json 'true' -AsHashtable
+ if(Test-Path -Path $afterBuildTasksPath -PathType leaf){
+ Write-Host -ForegroundColor Green 'Running after build tasks...'
+ . $afterBuildTasksPath @afterBuildTasksArgs
+ }
+}
+
+Write-Host -ForegroundColor Green '-------------Done-------------'
\ No newline at end of file
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/New-AzDnsResolverIPConfigurationObject.ps1 b/src/DnsResolver/DnsResolver.Autorest/custom/New-AzDnsResolverIPConfigurationObject.ps1
index 90a8bad7419b..72be3a645550 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/New-AzDnsResolverIPConfigurationObject.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/New-AzDnsResolverIPConfigurationObject.ps1
@@ -20,12 +20,12 @@ Create a in-memory object for IPConfiguration
Create a in-memory object for IPConfiguration
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IPConfiguration
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IPConfiguration
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsresolveripconfigurationobject
#>
function New-AzDnsResolverIPConfigurationObject {
- [OutputType('Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IPConfiguration')]
+ [OutputType('Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IPConfiguration')]
[CmdletBinding(PositionalBinding=$false)]
Param(
@@ -41,7 +41,7 @@ function New-AzDnsResolverIPConfigurationObject {
)
process {
- $Object = [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IPConfiguration]::New()
+ $Object = [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IPConfiguration]::New()
$Object.PrivateIPAddress = $PrivateIPAddress
$Object.PrivateIPAllocationMethod = $PrivateIPAllocationMethod
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/New-AzDnsResolverTargetDnsServer.ps1 b/src/DnsResolver/DnsResolver.Autorest/custom/New-AzDnsResolverTargetDnsServer.ps1
index 7e4d62e3f019..136788403a4c 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/New-AzDnsResolverTargetDnsServer.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/New-AzDnsResolverTargetDnsServer.ps1
@@ -20,12 +20,12 @@ Create a in-memory object for Target DNS server
Create a in-memory object for Target DNS server
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.TargetDnsServer
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.TargetDnsServer
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsresolvertargetdnsserverobject
#>
function New-AzDnsResolverTargetDnsServerObject {
- [OutputType('Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.TargetDnsServer')]
+ [OutputType('Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.TargetDnsServer')]
[CmdletBinding(PositionalBinding=$false)]
Param(
@@ -38,7 +38,7 @@ function New-AzDnsResolverTargetDnsServerObject {
)
process {
- $Object = [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.TargetDnsServer]::New()
+ $Object = [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.TargetDnsServer]::New()
$Object.IPAddress = $IPAddress
$Object.Port = $Port
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetForwardingRule_Get.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetForwardingRule_Get.cs
index 13e63ff020b9..4b550a734a03 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetForwardingRule_Get.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetForwardingRule_Get.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetForwardingRule_GetViaIdentity.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetForwardingRule_GetViaIdentity.cs
index 06379cf2d7d4..eea2a55811a9 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetForwardingRule_GetViaIdentity.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetForwardingRule_GetViaIdentity.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetForwardingRule_List.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetForwardingRule_List.cs
index 284c4de79936..e06506163fcd 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetForwardingRule_List.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetForwardingRule_List.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetVirtualNetworkLink_Get.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetVirtualNetworkLink_Get.cs
index 215c29c551e4..5dd49836408f 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetVirtualNetworkLink_Get.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetVirtualNetworkLink_Get.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetVirtualNetworkLink_GetViaIdentity.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetVirtualNetworkLink_GetViaIdentity.cs
index 4c7927ea454a..e0ccea4ab632 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetVirtualNetworkLink_GetViaIdentity.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetVirtualNetworkLink_GetViaIdentity.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetVirtualNetworkLink_List.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetVirtualNetworkLink_List.cs
index 6553a2fba9af..c270c4d2318c 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetVirtualNetworkLink_List.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRulesetVirtualNetworkLink_List.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_Get.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_Get.cs
index 48569896d5ed..8f10c5524210 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_Get.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_Get.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_GetViaIdentity.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_GetViaIdentity.cs
index 6c87d623aaf4..1e5b179a6b68 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_GetViaIdentity.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_GetViaIdentity.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_List.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_List.cs
index 6ab83448beee..7a2cf4dda384 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_List.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_List.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_List1.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_List1.cs
index f232521c612b..ef3d54dfd9e9 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_List1.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_List1.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_List2.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_List2.cs
index ec9602a694f9..27f3197d1828 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_List2.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsForwardingRuleset_List2.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverInboundEndpoint_Get.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverInboundEndpoint_Get.cs
index 965cdf6df0e0..220420dba371 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverInboundEndpoint_Get.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverInboundEndpoint_Get.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverInboundEndpoint_GetViaIdentity.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverInboundEndpoint_GetViaIdentity.cs
index 5ad676adfcc9..fbbf6824f420 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverInboundEndpoint_GetViaIdentity.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverInboundEndpoint_GetViaIdentity.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverInboundEndpoint_List.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverInboundEndpoint_List.cs
index 65cc9c8885b6..63abd7851723 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverInboundEndpoint_List.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverInboundEndpoint_List.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverOutboundEndpoint_Get.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverOutboundEndpoint_Get.cs
index 3bbb373cab60..106283ae5ec7 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverOutboundEndpoint_Get.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverOutboundEndpoint_Get.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverOutboundEndpoint_GetViaIdentity.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverOutboundEndpoint_GetViaIdentity.cs
index 2647a2f0663d..7a079fff1140 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverOutboundEndpoint_GetViaIdentity.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverOutboundEndpoint_GetViaIdentity.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverOutboundEndpoint_List.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverOutboundEndpoint_List.cs
index dbee9c07c962..8f13ef7d00cb 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverOutboundEndpoint_List.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolverOutboundEndpoint_List.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_Get.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_Get.cs
index 03ffd748bd08..a7980b0dd60f 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_Get.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_Get.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_GetViaIdentity.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_GetViaIdentity.cs
index 81491fed2648..8460ae8d23ba 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_GetViaIdentity.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_GetViaIdentity.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_List.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_List.cs
index c5a0f2b0b226..adc348e9105d 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_List.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_List.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_List1.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_List1.cs
index 2bd4042d9d10..2bd6b50b8410 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_List1.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_List1.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_List2.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_List2.cs
index 635708246a47..779d947b23ef 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_List2.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/GetAzDnsResolver_List2.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsForwardingRulesetForwardingRule_CreateExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsForwardingRulesetForwardingRule_CreateExpanded.cs
index a66c87734c2e..7092dfc48ed9 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsForwardingRulesetForwardingRule_CreateExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsForwardingRulesetForwardingRule_CreateExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsForwardingRulesetVirtualNetworkLink_CreateExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsForwardingRulesetVirtualNetworkLink_CreateExpanded.cs
index b6b058fa55da..5d12d380b182 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsForwardingRulesetVirtualNetworkLink_CreateExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsForwardingRulesetVirtualNetworkLink_CreateExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsForwardingRuleset_CreateExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsForwardingRuleset_CreateExpanded.cs
index e5af8f9eed5a..5f10592aebf4 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsForwardingRuleset_CreateExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsForwardingRuleset_CreateExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsResolverInboundEndpoint_CreateExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsResolverInboundEndpoint_CreateExpanded.cs
index 30d3261e21a7..97e9d966f0dc 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsResolverInboundEndpoint_CreateExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsResolverInboundEndpoint_CreateExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsResolverOutboundEndpoint_CreateExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsResolverOutboundEndpoint_CreateExpanded.cs
index e3d0d5d7415f..745ab35405fc 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsResolverOutboundEndpoint_CreateExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsResolverOutboundEndpoint_CreateExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsResolver_CreateExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsResolver_CreateExpanded.cs
index 9fb45c298c83..4dafa7790a3a 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsResolver_CreateExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/NewAzDnsResolver_CreateExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetForwardingRule_Delete.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetForwardingRule_Delete.cs
index b1a496dd6591..70608bc296f0 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetForwardingRule_Delete.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetForwardingRule_Delete.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetForwardingRule_DeleteViaIdentity.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetForwardingRule_DeleteViaIdentity.cs
index 176a713f441f..f43ecec111c2 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetForwardingRule_DeleteViaIdentity.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetForwardingRule_DeleteViaIdentity.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetVirtualNetworkLink_Delete.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetVirtualNetworkLink_Delete.cs
index 9a8c1fe4d1f0..5191f9c7d003 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetVirtualNetworkLink_Delete.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetVirtualNetworkLink_Delete.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetVirtualNetworkLink_DeleteViaIdentity.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetVirtualNetworkLink_DeleteViaIdentity.cs
index 40f981f3debc..ce94cd074333 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetVirtualNetworkLink_DeleteViaIdentity.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRulesetVirtualNetworkLink_DeleteViaIdentity.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRuleset_Delete.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRuleset_Delete.cs
index 3327a608e8cd..9ea4135ad1bb 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRuleset_Delete.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRuleset_Delete.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRuleset_DeleteViaIdentity.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRuleset_DeleteViaIdentity.cs
index 9b5d5816cf3a..563ec52ec2f7 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRuleset_DeleteViaIdentity.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsForwardingRuleset_DeleteViaIdentity.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverInboundEndpoint_Delete.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverInboundEndpoint_Delete.cs
index 14c66d0d16db..404d83b8a7f8 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverInboundEndpoint_Delete.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverInboundEndpoint_Delete.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverInboundEndpoint_DeleteViaIdentity.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverInboundEndpoint_DeleteViaIdentity.cs
index c5a10741f749..f81aa9e26f29 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverInboundEndpoint_DeleteViaIdentity.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverInboundEndpoint_DeleteViaIdentity.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverOutboundEndpoint_Delete.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverOutboundEndpoint_Delete.cs
index 05137e51e4d1..77433cf1228e 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverOutboundEndpoint_Delete.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverOutboundEndpoint_Delete.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverOutboundEndpoint_DeleteViaIdentity.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverOutboundEndpoint_DeleteViaIdentity.cs
index 48b64a61e204..8bfab6370bc2 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverOutboundEndpoint_DeleteViaIdentity.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolverOutboundEndpoint_DeleteViaIdentity.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolver_Delete.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolver_Delete.cs
index 4eb610b0777d..636805b5debd 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolver_Delete.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolver_Delete.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolver_DeleteViaIdentity.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolver_DeleteViaIdentity.cs
index f4e4d0128c78..b8188805b2b3 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolver_DeleteViaIdentity.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RemoveAzDnsResolver_DeleteViaIdentity.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RestErrorHandler.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RestErrorHandler.cs
index 6e1d3edc4fa5..11c49e265644 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RestErrorHandler.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/RestErrorHandler.cs
@@ -4,7 +4,7 @@
using System.Management.Automation;
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetForwardingRule_UpdateExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetForwardingRule_UpdateExpanded.cs
index 5963049071e2..010406b21962 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetForwardingRule_UpdateExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetForwardingRule_UpdateExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetForwardingRule_UpdateViaIdentityExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetForwardingRule_UpdateViaIdentityExpanded.cs
index f55ade7a32e8..d41babdefd91 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetForwardingRule_UpdateViaIdentityExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetForwardingRule_UpdateViaIdentityExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetVirtualNetworkLink_UpdateExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetVirtualNetworkLink_UpdateExpanded.cs
index 5fc2eece2720..ed004f5f1dda 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetVirtualNetworkLink_UpdateExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetVirtualNetworkLink_UpdateExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetVirtualNetworkLink_UpdateViaIdentityExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetVirtualNetworkLink_UpdateViaIdentityExpanded.cs
index 4abc84269377..5519eda80754 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetVirtualNetworkLink_UpdateViaIdentityExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRulesetVirtualNetworkLink_UpdateViaIdentityExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRuleset_UpdateExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRuleset_UpdateExpanded.cs
index 7887ea5bacda..6db9bc3be056 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRuleset_UpdateExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRuleset_UpdateExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRuleset_UpdateViaIdentityExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRuleset_UpdateViaIdentityExpanded.cs
index 89f6b9d75d82..98a123a07562 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRuleset_UpdateViaIdentityExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsForwardingRuleset_UpdateViaIdentityExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverInboundEndpoint_UpdateExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverInboundEndpoint_UpdateExpanded.cs
index b443c18e48a3..f71b0e6f39b1 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverInboundEndpoint_UpdateExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverInboundEndpoint_UpdateExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverInboundEndpoint_UpdateViaIdentityExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverInboundEndpoint_UpdateViaIdentityExpanded.cs
index d019f7a06a9f..47d3f01db5d6 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverInboundEndpoint_UpdateViaIdentityExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverInboundEndpoint_UpdateViaIdentityExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverOutboundEndpoint_UpdateExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverOutboundEndpoint_UpdateExpanded.cs
index 16f67fe81aec..47a2830c9ba3 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverOutboundEndpoint_UpdateExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverOutboundEndpoint_UpdateExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverOutboundEndpoint_UpdateViaIdentityExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverOutboundEndpoint_UpdateViaIdentityExpanded.cs
index 3909f5d7d9b2..f8cd7c19db91 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverOutboundEndpoint_UpdateViaIdentityExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolverOutboundEndpoint_UpdateViaIdentityExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolver_UpdateExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolver_UpdateExpanded.cs
index 6b43981d680e..ba1dbbcf01b3 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolver_UpdateExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolver_UpdateExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolver_UpdateViaIdentityExpanded.cs b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolver_UpdateViaIdentityExpanded.cs
index 46820ab60c7f..e10d82d701cc 100644
--- a/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolver_UpdateViaIdentityExpanded.cs
+++ b/src/DnsResolver/DnsResolver.Autorest/custom/csharp/UpdateAzDnsResolver_UpdateViaIdentityExpanded.cs
@@ -3,7 +3,7 @@
using System.Net.Http;
using System.Threading.Tasks;
-using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701;
+using Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview;
namespace Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Cmdlets
{
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/Get-AzDnsResolverDomainList.md b/src/DnsResolver/DnsResolver.Autorest/examples/Get-AzDnsResolverDomainList.md
new file mode 100644
index 000000000000..c7c5bdae02de
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/Get-AzDnsResolverDomainList.md
@@ -0,0 +1,50 @@
+### Example 1: List all DNS Resolver Domain Lists under the subscription
+```powershell
+Get-AzDnsResolverDomainList -SubscriptionId 0e5a46b1-de0b-4ec3-a5d7-dda908b4e076
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 dnsresolverdomainlisttestresolver2422 Microsoft.Network/dnsResolverDomainLists "8b002671-0000-0800-0000-60386dc10000"
+westus2 dnsresolverdomainlisttestresolver2654 Microsoft.Network/dnsResolverDomainLists "8b000f71-0000-0800-0000-60386cc40000"
+westus2 dnsresolverdomainlisttestresolver8416 Microsoft.Network/dnsResolverDomainLists "94008a5e-0000-0800-0000-603972f20000"
+westus2 dnsresolverdomainlisttestresolver5036 Microsoft.Network/dnsResolverDomainLists "8b002f71-0000-0800-0000-60386df80000"
+westus2 dnsresolverdomainlisttestresolver3718 Microsoft.Network/dnsResolverDomainLists "00009b95-0000-0800-0000-603e8b210000"
+westus2 dnsresolverdomainlisttestresolver2758 Microsoft.Network/dnsResolverDomainLists "8b00da70-0000-0800-0000-60386b4f0000"
+westus2 dnsresolverdomainlisttestresolver7108 Microsoft.Network/dnsResolverDomainLists "00008e95-0000-0800-0000-603e8aee0000"
+westus2 dnsresolverdomainlisttestresolver7639 Microsoft.Network/dnsResolverDomainLists "8b00b670-0000-0800-0000-60386b010000"
+westus2 dnsresolverdomainlisttestresolver5912 Microsoft.Network/dnsResolverDomainLists "8a00557f-0000-0800-0000-603853bc0000"
+westus2 dnsresolverdomainlisttestguli01 Microsoft.Network/dnsResolverDomainLists "48009f1b-0000-0800-0000-60302ec40000"
+westus2 dnsresolverdomainlisttestresolver9892 Microsoft.Network/dnsResolverDomainLists "47008640-0000-0800-0000-60300f220000"
+```
+
+This command gets all DNS Resolver Domain Lists under the subscription.
+
+### Example 2: List all DNS Resolver Domain Lists under the resource group
+```powershell
+Get-AzDnsResolverDomainList -ResourceGroupName powershell-test-rg
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnsresolverdomainlistname33nmy1fz Microsoft.Network/dnsResolverDomainLists "0000c2d4-0000-0800-0000-604013880000"
+westus2 psdnsresolverdomainlistname34dp19g6 Microsoft.Network/dnsResolverDomainLists "0000c9d4-0000-0800-0000-604013990000"
+westus2 psdnsresolverdomainlistname35m3jf0n Microsoft.Network/dnsResolverDomainLists "0000d0d4-0000-0800-0000-604013a80000"
+```
+
+This command gets all DNS Resolver Domain Lists under the resource group.
+
+### Example 3: Get single DNS Resolver by name
+```powershell
+Get-AzDnsResolverDomainList -ResourceGroupName powershell-test-rg -Name psdnsresolverdomainlistname33nmy1fz
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnsresolverdomainlistname33nmy1fz Microsoft.Network/dnsResolverDomainLists "0000c2d4-0000-0800-0000-604013880000"
+```
+
+This command gets a single DNS Resolver Domain List by name.
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/Get-AzDnsResolverPolicy.md b/src/DnsResolver/DnsResolver.Autorest/examples/Get-AzDnsResolverPolicy.md
new file mode 100644
index 000000000000..b5c9830c0480
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/Get-AzDnsResolverPolicy.md
@@ -0,0 +1,50 @@
+### Example 1: List all DNS Resolver Policies under the subscription
+```powershell
+Get-AzDnsResolverPolicy -SubscriptionId 0e5a46b1-de0b-4ec3-a5d7-dda908b4e076
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 dnsresolverpolicytestresolver2422 Microsoft.Network/dnsResolverPolicies "8b002671-0000-0800-0000-60386dc10000"
+westus2 dnsresolverpolicytestresolver2654 Microsoft.Network/dnsResolverPolicies "8b000f71-0000-0800-0000-60386cc40000"
+westus2 dnsresolverpolicytestresolver8416 Microsoft.Network/dnsResolverPolicies "94008a5e-0000-0800-0000-603972f20000"
+westus2 dnsresolverpolicytestresolver5036 Microsoft.Network/dnsResolverPolicies "8b002f71-0000-0800-0000-60386df80000"
+westus2 dnsresolverpolicytestresolver3718 Microsoft.Network/dnsResolverPolicies "00009b95-0000-0800-0000-603e8b210000"
+westus2 dnsresolverpolicytestresolver2758 Microsoft.Network/dnsResolverPolicies "8b00da70-0000-0800-0000-60386b4f0000"
+westus2 dnsresolverpolicytestresolver7108 Microsoft.Network/dnsResolverPolicies "00008e95-0000-0800-0000-603e8aee0000"
+westus2 dnsresolverpolicytestresolver7639 Microsoft.Network/dnsResolverPolicies "8b00b670-0000-0800-0000-60386b010000"
+westus2 dnsresolverpolicytestresolver5912 Microsoft.Network/dnsResolverPolicies "8a00557f-0000-0800-0000-603853bc0000"
+westus2 dnsresolverpolicytestguli01 Microsoft.Network/dnsResolverPolicies "48009f1b-0000-0800-0000-60302ec40000"
+westus2 dnsresolverpolicytestresolver9892 Microsoft.Network/dnsResolverPolicies "47008640-0000-0800-0000-60300f220000"
+```
+
+This command gets all DNS Resolver Policies under the subscription.
+
+### Example 2: List all DNS Resolver Policies under the resource group
+```powershell
+Get-AzDnsResolverPolicy -ResourceGroupName powershell-test-rg
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnsresolverpolicyname33nmy1fz Microsoft.Network/dnsResolverPolicies "0000c2d4-0000-0800-0000-604013880000"
+westus2 psdnsresolverpolicyname34dp19g6 Microsoft.Network/dnsResolverPolicies "0000c9d4-0000-0800-0000-604013990000"
+westus2 psdnsresolverpolicyname35m3jf0n Microsoft.Network/dnsResolverPolicies "0000d0d4-0000-0800-0000-604013a80000"
+```
+
+This command gets all DNS Resolver Policies under the resource group.
+
+### Example 3: Get single DNS Resolver by name
+```powershell
+Get-AzDnsResolverPolicy -ResourceGroupName powershell-test-rg -Name psdnsresolverpolicyname33nmy1fz
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnsresolverpolicyname33nmy1fz Microsoft.Network/dnsResolverPolicies "0000c2d4-0000-0800-0000-604013880000"
+```
+
+This command gets a single DNS Resolver Policy by name.
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/Get-AzDnsResolverPolicyDnsSecurityRule.md b/src/DnsResolver/DnsResolver.Autorest/examples/Get-AzDnsResolverPolicyDnsSecurityRule.md
new file mode 100644
index 000000000000..de25a32198ce
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/Get-AzDnsResolverPolicyDnsSecurityRule.md
@@ -0,0 +1,35 @@
+### Example 1: List all DNS Security Rule under the dns resolver policy
+```powershell
+Get-AzDnsResolverPolicyDnsSecurityRule -ResourceGroupName exampleResourceGroup -DnsResolverPolicyName exampleDnsResolverPolicy
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 dnssecurityruletestresolver2422 Microsoft.Network/dnsSecurityRules "8b002671-0000-0800-0000-60386dc10000"
+westus2 dnssecurityruletestresolver2654 Microsoft.Network/dnsSecurityRules "8b000f71-0000-0800-0000-60386cc40000"
+westus2 dnssecurityruletestresolver8416 Microsoft.Network/dnsSecurityRules "94008a5e-0000-0800-0000-603972f20000"
+westus2 dnssecurityruletestresolver5036 Microsoft.Network/dnsSecurityRules "8b002f71-0000-0800-0000-60386df80000"
+westus2 dnssecurityruletestresolver3718 Microsoft.Network/dnsSecurityRules "00009b95-0000-0800-0000-603e8b210000"
+westus2 dnssecurityruletestresolver2758 Microsoft.Network/dnsSecurityRules "8b00da70-0000-0800-0000-60386b4f0000"
+westus2 dnssecurityruletestresolver7108 Microsoft.Network/dnsSecurityRules "00008e95-0000-0800-0000-603e8aee0000"
+westus2 dnssecurityruletestresolver7639 Microsoft.Network/dnsSecurityRules "8b00b670-0000-0800-0000-60386b010000"
+westus2 dnssecurityruletestresolver5912 Microsoft.Network/dnsSecurityRules "8a00557f-0000-0800-0000-603853bc0000"
+westus2 dnssecurityruletestguli01 Microsoft.Network/dnsSecurityRules "48009f1b-0000-0800-0000-60302ec40000"
+westus2 dnssecurityruletestresolver9892 Microsoft.Network/dnsSecurityRules "47008640-0000-0800-0000-60300f220000"
+```
+
+This command gets all DNS Security Rule under the dns resolver policy.
+
+### Example 2: Get single DNS Security Rule by name
+```powershell
+Get-AzDnsResolverPolicyDnsSecurityRule -ResourceGroupName powershell-test-rg -DnsResolverPolicyName $resolverPolicyName -Name psdnssecurityrulename33nmy1fz
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnssecurityrulename33nmy1fz Microsoft.Network/dnsSecurityRules "0000c2d4-0000-0800-0000-604013880000"
+```
+
+This command gets a single DNS Security Rule by name.
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/Get-AzDnsResolverPolicyVirtualNetworkLink.md b/src/DnsResolver/DnsResolver.Autorest/examples/Get-AzDnsResolverPolicyVirtualNetworkLink.md
new file mode 100644
index 000000000000..773f36da2d88
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/Get-AzDnsResolverPolicyVirtualNetworkLink.md
@@ -0,0 +1,35 @@
+### Example 1: List all DNS Resolver Policy Links under the dns resolver policy
+```powershell
+Get-AzDnsResolverPolicyVirtualNetworkLink -ResourceGroupName exampleResourceGroup -DnsResolverPolicyName exampleDnsResolverPolicy
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 dnsresolverpolicylinktestresolver2422 Microsoft.Network/dnsResolverPolicyLinks "8b002671-0000-0800-0000-60386dc10000"
+westus2 dnsresolverpolicylinktestresolver2654 Microsoft.Network/dnsResolverPolicyLinks "8b000f71-0000-0800-0000-60386cc40000"
+westus2 dnsresolverpolicylinktestresolver8416 Microsoft.Network/dnsResolverPolicyLinks "94008a5e-0000-0800-0000-603972f20000"
+westus2 dnsresolverpolicylinktestresolver5036 Microsoft.Network/dnsResolverPolicyLinks "8b002f71-0000-0800-0000-60386df80000"
+westus2 dnsresolverpolicylinktestresolver3718 Microsoft.Network/dnsResolverPolicyLinks "00009b95-0000-0800-0000-603e8b210000"
+westus2 dnsresolverpolicylinktestresolver2758 Microsoft.Network/dnsResolverPolicyLinks "8b00da70-0000-0800-0000-60386b4f0000"
+westus2 dnsresolverpolicylinktestresolver7108 Microsoft.Network/dnsResolverPolicyLinks "00008e95-0000-0800-0000-603e8aee0000"
+westus2 dnsresolverpolicylinktestresolver7639 Microsoft.Network/dnsResolverPolicyLinks "8b00b670-0000-0800-0000-60386b010000"
+westus2 dnsresolverpolicylinktestresolver5912 Microsoft.Network/dnsResolverPolicyLinks "8a00557f-0000-0800-0000-603853bc0000"
+westus2 dnsresolverpolicylinktestguli01 Microsoft.Network/dnsResolverPolicyLinks "48009f1b-0000-0800-0000-60302ec40000"
+westus2 dnsresolverpolicylinktestresolver9892 Microsoft.Network/dnsResolverPolicyLinks "47008640-0000-0800-0000-60300f220000"
+```
+
+This command gets all DNS Resolver Policy Links under the dns resolver policy.
+
+### Example 2: Get single DNS Resolver Policy Link by name
+```powershell
+Get-AzDnsResolverPolicyVirtualNetworkLink -ResourceGroupName powershell-test-rg -DnsResolverPolicyName $resolverPolicyName -Name psdnsresolverpolicylinkname33nmy1fz
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnsresolverpolicylinkname33nmy1fz Microsoft.Network/dnsResolverPolicyLinks "0000c2d4-0000-0800-0000-604013880000"
+```
+
+This command gets a single DNS Resolver Policy Link by name.
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/New-AzDnsResolverDomainList.md b/src/DnsResolver/DnsResolver.Autorest/examples/New-AzDnsResolverDomainList.md
new file mode 100644
index 000000000000..6d392ab560d7
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/New-AzDnsResolverDomainList.md
@@ -0,0 +1,26 @@
+### Example 1: Create a DNS resolver domain list
+```powershell
+New-AzDnsResolverDomainList -Name sampleResolverDomainList -ResourceGroupName powershell-test-rg -Location westus2 -Domain @("contoso.com.", "example.com.")
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 sampleResolverDomainList Microsoft.Network/dnsResolvers "000027d5-0000-0800-0000-6040150e0000"
+```
+
+This cmdlet creates a DNS resolver domain list.
+
+
+### Example 2: Create a DNS resolver domain list with tag
+```powershell
+New-AzDnsResolverDomainList -Name sampleResolverDomainList -ResourceGroupName powershell-test-rg -Location westus2 -Domain @("contoso.com.", "example.com.") -Tag @{"key0" = "value0"}
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 sampleResolverDomainList Microsoft.Network/dnsResolverPolicies "00008cd5-0000-0800-0000-604016c90000"
+```
+
+This cmdlet creates a DNS resolver domain list with tag.
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/New-AzDnsResolverPolicy.md b/src/DnsResolver/DnsResolver.Autorest/examples/New-AzDnsResolverPolicy.md
new file mode 100644
index 000000000000..42f1d323c2dc
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/New-AzDnsResolverPolicy.md
@@ -0,0 +1,26 @@
+### Example 1: Create a DNS resolver policy
+```powershell
+New-AzDnsResolverPolicy -Name sampleResolverPolicy -ResourceGroupName powershell-test-rg -Location westus2
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 sampleResolverPolicy Microsoft.Network/dnsResolvers "000027d5-0000-0800-0000-6040150e0000"
+```
+
+This cmdlet creates a DNS resolver policy.
+
+
+### Example 2: Create a DNS resolver policy with tag
+```powershell
+New-AzDnsResolverPolicy -Name sampleResolverPolicy -ResourceGroupName powershell-test-rg -Location westus2 -Tag @{"key0" = "value0"}
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 sampleResolverPolicy Microsoft.Network/dnsResolvers "00008cd5-0000-0800-0000-604016c90000"
+```
+
+This cmdlet creates a DNS resolver policy with tag.
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/New-AzDnsResolverPolicyDnsSecurityRule.md b/src/DnsResolver/DnsResolver.Autorest/examples/New-AzDnsResolverPolicyDnsSecurityRule.md
new file mode 100644
index 000000000000..0d1587ec841f
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/New-AzDnsResolverPolicyDnsSecurityRule.md
@@ -0,0 +1,24 @@
+### Example 1: Create a DNS security rule
+```powershell
+New-AzDnsResolverPolicyDnsSecurityRule -Name sampleSecurityRule -ResourceGroupName powershell-test-rg -DnsResolverPolicyName samplePolicyName -Location westus2 -DnsSecurityRuleState "Enabled" -ActionType "Block" -ActionBlockResponseCode "SERVFAIL" -Priority 100 -DnsResolverDomainList @{id = "/subscriptions/0e5a46b1-de0b-4ec3-a5d7-dda908b4e076/resourceGroups/powershell-test-rg/providers/Microsoft.Network/dnsResolverDomainLists/exampleDomainListName";}
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 sampleSecurityRule Microsoft.Network/dnsSecurityRules "000027d5-0000-0800-0000-6040150e0000"
+```
+
+This cmdlet creates a DNS security rule.
+
+### Example 2: Create a DNS security rule with tag
+```powershell
+New-AzDnsResolverPolicyDnsSecurityRule -Name sampleSecurityRule -ResourceGroupName powershell-test-rg -DnsResolverPolicyName samplePolicyName -Location westus2 -DnsSecurityRuleState "Enabled" -ActionType "Block" -ActionBlockResponseCode "SERVFAIL" -Priority 100 -DnsResolverDomainList @{id = "/subscriptions/0e5a46b1-de0b-4ec3-a5d7-dda908b4e076/resourceGroups/powershell-test-rg/providers/Microsoft.Network/dnsResolverDomainLists/exampleDomainListName";} -Tag @{"key0" = "value0"}
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 sampleSecurityRule Microsoft.Network/dnsSecurityRules "00008cd5-0000-0800-0000-604016c90000"
+```
+
+This cmdlet creates a DNS security rule with tag.
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/New-AzDnsResolverPolicyVirtualNetworkLink.md b/src/DnsResolver/DnsResolver.Autorest/examples/New-AzDnsResolverPolicyVirtualNetworkLink.md
new file mode 100644
index 000000000000..561762d363a0
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/New-AzDnsResolverPolicyVirtualNetworkLink.md
@@ -0,0 +1,26 @@
+### Example 1: Create a DNS resolver policy link
+```powershell
+New-AzDnsResolverPolicyVirtualNetworkLink -Name sampleResolverPolicyLink -ResourceGroupName powershell-test-rg -DnsResolverPolicyName samplePolicyName -VirtualNetworkId /subscriptions/0e5a46b1-de0b-4ec3-a5d7-dda908b4e076/resourceGroups/powershell-test-08b4e076/resourceGroups/powershell-test-rg/providers/Microsoft.Network/virtualNetworks/psvirtualnetworkname16y71mjc -Location westus2
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 sampleResolverPolicyLink Microsoft.Network/dnsResolverPolicyLinks "000027d5-0000-0800-0000-6040150e0000"
+```
+
+This cmdlet creates a DNS resolver policy link.
+
+
+### Example 2: Create a DNS resolver policy link with tag
+```powershell
+New-AzDnsResolverPolicyVirtualNetworkLink -Name sampleResolverPolicyLink -ResourceGroupName powershell-test-rg -DnsResolverPolicyName samplePolicyName -VirtualNetworkId /subscriptions/0e5a46b1-de0b-4ec3-a5d7-dda908b4e076/resourceGroups/powershell-test-rg/providers/Microsoft.Network/virtualNetworks/psvirtualnetworkname16y71mjc -Location westus2 -Tag @{"key0" = "value0"}
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 sampleResolverPolicyLink Microsoft.Network/dnsResolverPolicyLinks "00008cd5-0000-0800-0000-604016c90000"
+```
+
+This cmdlet creates a DNS resolver policy link with tag.
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/Remove-AzDnsResolverDomainList.md b/src/DnsResolver/DnsResolver.Autorest/examples/Remove-AzDnsResolverDomainList.md
new file mode 100644
index 000000000000..8b7fcd62acd1
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/Remove-AzDnsResolverDomainList.md
@@ -0,0 +1,14 @@
+### Example 1: Remove a DNS Resolver Domain List by name
+```powershell
+Remove-AzDnsResolverDomainList -ResourceGroupName powershell-test-rg -Name psdnsresolvername33nmy1fz
+```
+This command removes a DNS Resolver Domain List by name.
+
+### Example 2: Remove a DNS Resolver Domain List by identity
+```powershell
+$dnsResolverDomainListObject = Get-AzDnsResolverDomainList -ResourceGroupName powershell-test-rg -Name psdnsresolvername33nmy1fz
+Remove-AzDnsResolverDomainList -InputObject $dnsResolverDomainListObject
+```
+
+This command removes a DNS Resolver Domain List by identity.
+
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/Remove-AzDnsResolverPolicy.md b/src/DnsResolver/DnsResolver.Autorest/examples/Remove-AzDnsResolverPolicy.md
new file mode 100644
index 000000000000..eeaf5f37980a
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/Remove-AzDnsResolverPolicy.md
@@ -0,0 +1,14 @@
+### Example 1: Remove a Dns Resolver Policy by name
+```powershell
+Remove-AzDnsResolverPolicy -ResourceGroupName powershell-test-rg -Name psdnsresolvername33nmy1fz
+```
+This command removes a Dns Resolver Policy by name.
+
+### Example 2: Remove a Dns Resolver Policy by identity
+```powershell
+$dnsResolverPolicyObject = Get-AzDnsResolverPolicy -ResourceGroupName powershell-test-rg -Name psdnsresolvername33nmy1fz
+Remove-AzDnsResolverPolicy -InputObject $dnsResolverPolicyObject
+```
+
+This command removes a Dns Resolver Policy by identity.
+
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/Remove-AzDnsResolverPolicyDnsSecurityRule.md b/src/DnsResolver/DnsResolver.Autorest/examples/Remove-AzDnsResolverPolicyDnsSecurityRule.md
new file mode 100644
index 000000000000..1b7915c5bfb8
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/Remove-AzDnsResolverPolicyDnsSecurityRule.md
@@ -0,0 +1,13 @@
+### Example 1: Remove a DNS Security Rule by name
+```powershell
+Remove-AzDnsResolverPolicyDnsSecurityRule -ResourceGroupName powershell-test-rg -DnsResolverPolicyName exampleResolverPolicyName -Name psdnssecurityrulename33nmy1fz
+```
+This command removes a DNS Security Rule by name.
+
+### Example 2: Remove a DNS Security Rule by identity
+```powershell
+$dnsSecurityRuleObject = Get-AzDnsResolverPolicyDnsSecurityRule -ResourceGroupName powershell-test-rg -DnsResolverPolicyName exampleResolverPolicyName -Name psdnssecurityrulename33nmy1fz
+Remove-AzDnsResolverPolicyDnsSecurityRule -InputObject $dnsSecurityRuleObject
+```
+
+This command removes a DNS Security Rule by identity.
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/Remove-AzDnsResolverPolicyVirtualNetworkLink.md b/src/DnsResolver/DnsResolver.Autorest/examples/Remove-AzDnsResolverPolicyVirtualNetworkLink.md
new file mode 100644
index 000000000000..07b876e50a7f
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/Remove-AzDnsResolverPolicyVirtualNetworkLink.md
@@ -0,0 +1,14 @@
+### Example 1: Remove a DNS Resolver Policy Link by name
+```powershell
+Remove-AzDnsResolverPolicyVirtualNetworkLink -ResourceGroupName powershell-test-rg -DnsResolverPolicyName exampleResolverPolicyName -Name psdnsresolverpolicylinkname33nmy1fz
+```
+This command removes a DNS Resolver Policy Link by name.
+
+### Example 2: Remove a DNS Resolver Policy Link by identity
+```powershell
+$dnsResolverPolicyLinkObject = Get-AzDnsResolverPolicyVirtualNetworkLink -ResourceGroupName powershell-test-rg -DnsResolverPolicyName exampleResolverPolicyName -Name psdnsresolverpolicylinkname33nmy1fz
+Remove-AzDnsResolverPolicyVirtualNetworkLink -InputObject $dnsResolverPolicyLinkObject
+```
+
+This command removes a DNS Resolver Policy Link by identity.
+
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/Update-AzDnsResolverDomainList.md b/src/DnsResolver/DnsResolver.Autorest/examples/Update-AzDnsResolverDomainList.md
new file mode 100644
index 000000000000..992a8c58b02f
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/Update-AzDnsResolverDomainList.md
@@ -0,0 +1,25 @@
+### Example 1: Update an existing DNS Resolver Domain List by name
+```powershell
+Update-AzDnsResolverDomainList -ResourceGroupName powershell-test-rg -Name psdnsresolverdomainlistname33nmy1fz -Tag @{"key0" = "value0"}
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnsresolverdomainlistname33nmy1fz Microsoft.Network/dnsResolverDomainLists "0000efd6-0000-0800-0000-60401c7c0000"
+```
+
+This command updates an existing DNS Resolver Domain List by name ( adding tag ).
+
+### Example 2: Updates an existing DNS Resolver Domain List by identity
+```powershell
+$dnsResolverDomainListObject = Get-AzDnsResolverDomainList -ResourceGroupName powershell-test-rg -Name psdnsresolverdomainlistname33nmy1fz
+Update-AzDnsResolverDomainList -InputObject $dnsResolverDomainListObject -Tag @{}
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnsresolverdomainlistname33nmy1fz Microsoft.Network/dnsResolverDomainLists "0000efd6-0000-0800-0000-60401c7c0000"
+```
+This command updates an existing DNS Resolver Domain List by identity ( removing tag ).
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/Update-AzDnsResolverPolicy.md b/src/DnsResolver/DnsResolver.Autorest/examples/Update-AzDnsResolverPolicy.md
new file mode 100644
index 000000000000..190781e2b41b
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/Update-AzDnsResolverPolicy.md
@@ -0,0 +1,25 @@
+### Example 1: Update an existing DNS Resolver Policy by name
+```powershell
+Update-AzDnsResolverPolicy -ResourceGroupName powershell-test-rg -Name psdnsresolverpolicyname33nmy1fz -Tag @{"key0" = "value0"}
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnsresolverpolicyname33nmy1fz Microsoft.Network/dnsResolverPolicies "0000efd6-0000-0800-0000-60401c7c0000"
+```
+
+This command updates an existing DNS Resolver Policy by name ( adding tag ).
+
+### Example 2: Updates an existing DNS Resolver Policy by identity
+```powershell
+$dnsResolverPolicyObject = Get-AzDnsResolverPolicy -ResourceGroupName powershell-test-rg -Name psdnsresolverpolicyname33nmy1fz
+Update-AzDnsResolverPolicy -InputObject $dnsResolverPolicyObject -Tag @{}
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnsresolverpolicyname33nmy1fz Microsoft.Network/dnsResolverPolicies "0000efd6-0000-0800-0000-60401c7c0000"
+```
+This command updates an existing DNS Resolver Policy by identity ( removing tag ).
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/Update-AzDnsResolverPolicyDnsSecurityRule.md b/src/DnsResolver/DnsResolver.Autorest/examples/Update-AzDnsResolverPolicyDnsSecurityRule.md
new file mode 100644
index 000000000000..f2298d295090
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/Update-AzDnsResolverPolicyDnsSecurityRule.md
@@ -0,0 +1,25 @@
+### Example 1: Update an existing DNS Security Rule by name
+```powershell
+Update-AzDnsResolverPolicyDnsSecurityRule -ResourceGroupName powershell-test-rg -DnsResolverPolicyName exampleDnsResolverPolicyName -Name psdnssecurityrulename33nmy1fz -Tag @{"key0" = "value0"}
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnssecurityrulename33nmy1fz Microsoft.Network/dnsSecurityRules "0000efd6-0000-0800-0000-60401c7c0000"
+```
+
+This command updates an existing DNS Security Rules by name ( adding tag ).
+
+### Example 2: Updates an existing DNS Resolver by identity
+```powershell
+$dnsSecurityRuleObject = Get-AzDnsResolverPolicyDnsSecurityRule -ResourceGroupName powershell-test-rg -DnsResolverPolicyName exampleDnsResolverPolicyName -Name psdnssecurityrulename33nmy1fz
+Update-AzDnsResolverPolicyDnsSecurityRule -InputObject $dnsSecurityRuleObject -Tag @{}
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnssecurityrulename33nmy1fz Microsoft.Network/dnsSecurityRules "0000efd6-0000-0800-0000-60401c7c0000"
+```
+This command updates an existing DNS Security Rules by identity ( removing tag ).
diff --git a/src/DnsResolver/DnsResolver.Autorest/examples/Update-AzDnsResolverPolicyVirtualNetworkLink.md b/src/DnsResolver/DnsResolver.Autorest/examples/Update-AzDnsResolverPolicyVirtualNetworkLink.md
new file mode 100644
index 000000000000..532d7cd77757
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/examples/Update-AzDnsResolverPolicyVirtualNetworkLink.md
@@ -0,0 +1,25 @@
+### Example 1: Update an existing DNS Resolver Policy Link by name
+```powershell
+Update-AzDnsResolverPolicyVirtualNetworkLink -ResourceGroupName powershell-test-rg -DnsResolverPolicyName exampleDnsResolverPolicyName -Name psdnsresolverpolicylinkname33nmy1fz -Tag @{"key0" = "value0"}
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnsresolverpolicylinkname33nmy1fz Microsoft.Network/dnsResolverPolicyLinks "0000efd6-0000-0800-0000-60401c7c0000"
+```
+
+This command updates an existing DNS Resolver Policy Links by name ( adding tag ).
+
+### Example 2: Updates an existing DNS Resolver by identity
+```powershell
+$dnsResolverPolicyLinkObject = Get-AzDnsResolverPolicyVirtualNetworkLink -ResourceGroupName powershell-test-rg -DnsResolverPolicyName exampleDnsResolverPolicyName -Name psdnsresolverpolicylinkname33nmy1fz
+Update-AzDnsResolverPolicyVirtualNetworkLink -InputObject $dnsResolverPolicyLinkObject -Tag @{}
+```
+
+```output
+Location Name Type Etag
+-------- ---- ---- ----
+westus2 psdnsresolverpolicylinkname33nmy1fz Microsoft.Network/dnsResolverPolicyLinks "0000efd6-0000-0800-0000-60401c7c0000"
+```
+This command updates an existing DNS Resolver Policy Links by identity ( removing tag ).
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsForwardingRuleset.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsForwardingRuleset.ps1
index f06ea8b387cf..c98c645983f2 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsForwardingRuleset.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsForwardingRuleset.ps1
@@ -31,9 +31,9 @@ Get-AzDnsForwardingRuleset -ResourceGroupName sampleRG -VirtualNetworkName virtu
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IDnsForwardingRuleset
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsForwardingRuleset
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IVirtualNetworkDnsForwardingRuleset
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IVirtualNetworkDnsForwardingRuleset
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -41,20 +41,24 @@ To create the parameters described below, construct a hash table containing the
INPUTOBJECT : Identity Parameter
[DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
[DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
[ForwardingRuleName ]: The name of the forwarding rule.
[Id ]: Resource identity path
[InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
[OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
[ResourceGroupName ]: The name of the resource group. The name is case insensitive.
- [SubscriptionId ]: The ID of the target subscription.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
[VirtualNetworkLinkName ]: The name of the virtual network link.
[VirtualNetworkName ]: The name of the virtual network.
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsforwardingruleset
#>
function Get-AzDnsForwardingRuleset {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IDnsForwardingRuleset], [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IVirtualNetworkDnsForwardingRuleset])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsForwardingRuleset], [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IVirtualNetworkDnsForwardingRuleset])]
[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
@@ -81,6 +85,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String[]]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsForwardingRulesetForwardingRule.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsForwardingRulesetForwardingRule.ps1
index e1ea4ed9fdce..d63b831e9960 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsForwardingRulesetForwardingRule.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsForwardingRulesetForwardingRule.ps1
@@ -27,7 +27,7 @@ Get-AzDnsForwardingRulesetForwardingRule -DnsForwardingRulesetName DnsResolverNa
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IForwardingRule
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IForwardingRule
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -35,20 +35,24 @@ To create the parameters described below, construct a hash table containing the
INPUTOBJECT : Identity Parameter
[DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
[DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
[ForwardingRuleName ]: The name of the forwarding rule.
[Id ]: Resource identity path
[InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
[OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
[ResourceGroupName ]: The name of the resource group. The name is case insensitive.
- [SubscriptionId ]: The ID of the target subscription.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
[VirtualNetworkLinkName ]: The name of the virtual network link.
[VirtualNetworkName ]: The name of the virtual network.
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsforwardingrulesetforwardingrule
#>
function Get-AzDnsForwardingRulesetForwardingRule {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IForwardingRule])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IForwardingRule])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
@@ -79,6 +83,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String[]]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsForwardingRulesetVirtualNetworkLink.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsForwardingRulesetVirtualNetworkLink.ps1
index b046168aa07f..cf02411acc22 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsForwardingRulesetVirtualNetworkLink.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsForwardingRulesetVirtualNetworkLink.ps1
@@ -27,7 +27,7 @@ Get-AzDnsForwardingRulesetVirtualNetworkLink -DnsForwardingRulesetName pstestdns
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IVirtualNetworkLink
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IVirtualNetworkLink
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -35,20 +35,24 @@ To create the parameters described below, construct a hash table containing the
INPUTOBJECT : Identity Parameter
[DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
[DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
[ForwardingRuleName ]: The name of the forwarding rule.
[Id ]: Resource identity path
[InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
[OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
[ResourceGroupName ]: The name of the resource group. The name is case insensitive.
- [SubscriptionId ]: The ID of the target subscription.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
[VirtualNetworkLinkName ]: The name of the virtual network link.
[VirtualNetworkName ]: The name of the virtual network.
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsforwardingrulesetvirtualnetworklink
#>
function Get-AzDnsForwardingRulesetVirtualNetworkLink {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IVirtualNetworkLink])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IVirtualNetworkLink])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
@@ -79,6 +83,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String[]]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolver.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolver.ps1
index 85838826ef05..8a8407fb9da4 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolver.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolver.ps1
@@ -31,9 +31,9 @@ Get-AzDnsResolver -ResourceGroupName powershell-test-rg -VirtualNetworkName virt
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IDnsResolver
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolver
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ISubResource
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ISubResource
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -41,20 +41,24 @@ To create the parameters described below, construct a hash table containing the
INPUTOBJECT : Identity Parameter
[DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
[DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
[ForwardingRuleName ]: The name of the forwarding rule.
[Id ]: Resource identity path
[InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
[OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
[ResourceGroupName ]: The name of the resource group. The name is case insensitive.
- [SubscriptionId ]: The ID of the target subscription.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
[VirtualNetworkLinkName ]: The name of the virtual network link.
[VirtualNetworkName ]: The name of the virtual network.
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsresolver
#>
function Get-AzDnsResolver {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IDnsResolver], [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ISubResource])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolver], [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ISubResource])]
[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
@@ -81,6 +85,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String[]]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverDomainList.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverDomainList.ps1
new file mode 100644
index 000000000000..4b13d48d7140
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverDomainList.ps1
@@ -0,0 +1,237 @@
+
+# ----------------------------------------------------------------------------------
+# 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.
+# ----------------------------------------------------------------------------------
+
+<#
+.Synopsis
+Gets properties of a DNS resolver domain list.
+.Description
+Gets properties of a DNS resolver domain list.
+.Example
+Get-AzDnsResolverDomainList -SubscriptionId 0e5a46b1-de0b-4ec3-a5d7-dda908b4e076
+.Example
+Get-AzDnsResolverDomainList -ResourceGroupName powershell-test-rg
+.Example
+Get-AzDnsResolverDomainList -ResourceGroupName powershell-test-rg -Name psdnsresolverdomainlistname33nmy1fz
+
+.Inputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
+.Outputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverDomainList
+.Notes
+COMPLEX PARAMETER PROPERTIES
+
+To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
+
+INPUTOBJECT : Identity Parameter
+ [DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
+ [DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
+ [ForwardingRuleName ]: The name of the forwarding rule.
+ [Id ]: Resource identity path
+ [InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
+ [OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
+ [ResourceGroupName ]: The name of the resource group. The name is case insensitive.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
+ [VirtualNetworkLinkName ]: The name of the virtual network link.
+ [VirtualNetworkName ]: The name of the virtual network.
+.Link
+https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsresolverdomainlist
+#>
+function Get-AzDnsResolverDomainList {
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverDomainList])]
+[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)]
+param(
+ [Parameter(ParameterSetName='Get', Mandatory)]
+ [Alias('DnsResolverDomainListName')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the DNS resolver domain list.
+ ${Name},
+
+ [Parameter(ParameterSetName='Get', Mandatory)]
+ [Parameter(ParameterSetName='List', Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the resource group.
+ # The name is case insensitive.
+ ${ResourceGroupName},
+
+ [Parameter(ParameterSetName='Get')]
+ [Parameter(ParameterSetName='List')]
+ [Parameter(ParameterSetName='List1')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
+ [System.String[]]
+ # The ID of the target subscription.
+ # The value must be an UUID.
+ ${SubscriptionId},
+
+ [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity]
+ # Identity Parameter
+ # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
+ ${InputObject},
+
+ [Parameter(ParameterSetName='List')]
+ [Parameter(ParameterSetName='List1')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Query')]
+ [System.Int32]
+ # The maximum number of results to return.
+ # If not specified, returns up to 100 results.
+ ${Top},
+
+ [Parameter()]
+ [Alias('AzureRMContext', 'AzureCredential')]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Azure')]
+ [System.Management.Automation.PSObject]
+ # The DefaultProfile parameter is not functional.
+ # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.
+ ${DefaultProfile},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Wait for .NET debugger to attach
+ ${Break},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be appended to the front of the pipeline
+ ${HttpPipelineAppend},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be prepended to the front of the pipeline
+ ${HttpPipelinePrepend},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Uri]
+ # The URI for the proxy server to use
+ ${Proxy},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.PSCredential]
+ # Credentials for a proxy server to use for the remote call
+ ${ProxyCredential},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Use the default credentials for the proxy
+ ${ProxyUseDefaultCredentials}
+)
+
+begin {
+ try {
+ $outBuffer = $null
+ if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
+ $PSBoundParameters['OutBuffer'] = 1
+ }
+ $parameterSet = $PSCmdlet.ParameterSetName
+
+ if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) {
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString()
+ }
+ $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ if ($preTelemetryId -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId =(New-Guid).ToString()
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Create', $MyInvocation, $parameterSet, $PSCmdlet)
+ } else {
+ $internalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ if ($internalCalledCmdlets -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $MyInvocation.MyCommand.Name
+ } else {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets += ',' + $MyInvocation.MyCommand.Name
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = 'internal'
+ }
+
+ $mapping = @{
+ Get = 'Az.DnsResolver.private\Get-AzDnsResolverDomainList_Get';
+ GetViaIdentity = 'Az.DnsResolver.private\Get-AzDnsResolverDomainList_GetViaIdentity';
+ List = 'Az.DnsResolver.private\Get-AzDnsResolverDomainList_List';
+ List1 = 'Az.DnsResolver.private\Get-AzDnsResolverDomainList_List1';
+ }
+ if (('Get', 'List', 'List1') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) {
+ $testPlayback = $false
+ $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } }
+ if ($testPlayback) {
+ $PSBoundParameters['SubscriptionId'] = . (Join-Path $PSScriptRoot '..' 'utils' 'Get-SubscriptionIdTestSafe.ps1')
+ } else {
+ $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id
+ }
+ }
+ $cmdInfo = Get-Command -Name $mapping[$parameterSet]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ if ($null -ne $MyInvocation.MyCommand -and [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets -notcontains $MyInvocation.MyCommand.Name -and [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ContainsPreviewAttribute($cmdInfo, $MyInvocation)){
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessPreviewMessageAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name)
+ }
+ $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
+ $scriptCmd = {& $wrappedCmd @PSBoundParameters}
+ $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
+ $steppablePipeline.Begin($PSCmdlet)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+
+process {
+ try {
+ $steppablePipeline.Process($_)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+
+ finally {
+ $backupTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ $backupInternalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+
+}
+end {
+ try {
+ $steppablePipeline.End()
+
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $backupTelemetryId
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $backupInternalCalledCmdlets
+ if ($preTelemetryId -eq '') {
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Send', $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $preTelemetryId
+
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+}
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverInboundEndpoint.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverInboundEndpoint.ps1
index b1861bb34d04..92922169ab3c 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverInboundEndpoint.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverInboundEndpoint.ps1
@@ -27,7 +27,7 @@ Get-AzDnsResolverInboundEndpoint -DnsResolverName pstestdnsresolvername -Name sa
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IInboundEndpoint
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IInboundEndpoint
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -35,20 +35,24 @@ To create the parameters described below, construct a hash table containing the
INPUTOBJECT : Identity Parameter
[DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
[DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
[ForwardingRuleName ]: The name of the forwarding rule.
[Id ]: Resource identity path
[InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
[OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
[ResourceGroupName ]: The name of the resource group. The name is case insensitive.
- [SubscriptionId ]: The ID of the target subscription.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
[VirtualNetworkLinkName ]: The name of the virtual network link.
[VirtualNetworkName ]: The name of the virtual network.
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsresolverinboundendpoint
#>
function Get-AzDnsResolverInboundEndpoint {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IInboundEndpoint])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IInboundEndpoint])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
@@ -79,6 +83,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String[]]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverOutboundEndpoint.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverOutboundEndpoint.ps1
index 7d4838794cbc..f9816b557454 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverOutboundEndpoint.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverOutboundEndpoint.ps1
@@ -27,7 +27,7 @@ Get-AzDnsResolverOutboundEndpoint -DnsResolverName sampleResolver -Name sampleOu
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IOutboundEndpoint
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IOutboundEndpoint
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -35,20 +35,24 @@ To create the parameters described below, construct a hash table containing the
INPUTOBJECT : Identity Parameter
[DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
[DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
[ForwardingRuleName ]: The name of the forwarding rule.
[Id ]: Resource identity path
[InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
[OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
[ResourceGroupName ]: The name of the resource group. The name is case insensitive.
- [SubscriptionId ]: The ID of the target subscription.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
[VirtualNetworkLinkName ]: The name of the virtual network link.
[VirtualNetworkName ]: The name of the virtual network.
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsresolveroutboundendpoint
#>
function Get-AzDnsResolverOutboundEndpoint {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IOutboundEndpoint])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IOutboundEndpoint])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
@@ -79,6 +83,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String[]]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverPolicy.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverPolicy.ps1
new file mode 100644
index 000000000000..19f69511223e
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverPolicy.ps1
@@ -0,0 +1,248 @@
+
+# ----------------------------------------------------------------------------------
+# 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.
+# ----------------------------------------------------------------------------------
+
+<#
+.Synopsis
+Gets properties of a DNS resolver policy.
+.Description
+Gets properties of a DNS resolver policy.
+.Example
+Get-AzDnsResolverPolicy -SubscriptionId 0e5a46b1-de0b-4ec3-a5d7-dda908b4e076
+.Example
+Get-AzDnsResolverPolicy -ResourceGroupName powershell-test-rg
+.Example
+Get-AzDnsResolverPolicy -ResourceGroupName powershell-test-rg -Name psdnsresolverpolicyname33nmy1fz
+
+.Inputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
+.Outputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverPolicy
+.Outputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ISubResource
+.Notes
+COMPLEX PARAMETER PROPERTIES
+
+To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
+
+INPUTOBJECT : Identity Parameter
+ [DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
+ [DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
+ [ForwardingRuleName ]: The name of the forwarding rule.
+ [Id ]: Resource identity path
+ [InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
+ [OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
+ [ResourceGroupName ]: The name of the resource group. The name is case insensitive.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
+ [VirtualNetworkLinkName ]: The name of the virtual network link.
+ [VirtualNetworkName ]: The name of the virtual network.
+.Link
+https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsresolverpolicy
+#>
+function Get-AzDnsResolverPolicy {
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverPolicy], [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ISubResource])]
+[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
+param(
+ [Parameter(ParameterSetName='Get', Mandatory)]
+ [Alias('DnsResolverPolicyName')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the DNS resolver policy.
+ ${Name},
+
+ [Parameter(ParameterSetName='Get', Mandatory)]
+ [Parameter(ParameterSetName='List', Mandatory)]
+ [Parameter(ParameterSetName='List2', Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the resource group.
+ # The name is case insensitive.
+ ${ResourceGroupName},
+
+ [Parameter(ParameterSetName='Get')]
+ [Parameter(ParameterSetName='List')]
+ [Parameter(ParameterSetName='List1')]
+ [Parameter(ParameterSetName='List2')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
+ [System.String[]]
+ # The ID of the target subscription.
+ # The value must be an UUID.
+ ${SubscriptionId},
+
+ [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity]
+ # Identity Parameter
+ # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
+ ${InputObject},
+
+ [Parameter(ParameterSetName='List2', Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the virtual network.
+ ${VirtualNetworkName},
+
+ [Parameter(ParameterSetName='List')]
+ [Parameter(ParameterSetName='List1')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Query')]
+ [System.Int32]
+ # The maximum number of results to return.
+ # If not specified, returns up to 100 results.
+ ${Top},
+
+ [Parameter()]
+ [Alias('AzureRMContext', 'AzureCredential')]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Azure')]
+ [System.Management.Automation.PSObject]
+ # The DefaultProfile parameter is not functional.
+ # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.
+ ${DefaultProfile},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Wait for .NET debugger to attach
+ ${Break},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be appended to the front of the pipeline
+ ${HttpPipelineAppend},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be prepended to the front of the pipeline
+ ${HttpPipelinePrepend},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Uri]
+ # The URI for the proxy server to use
+ ${Proxy},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.PSCredential]
+ # Credentials for a proxy server to use for the remote call
+ ${ProxyCredential},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Use the default credentials for the proxy
+ ${ProxyUseDefaultCredentials}
+)
+
+begin {
+ try {
+ $outBuffer = $null
+ if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
+ $PSBoundParameters['OutBuffer'] = 1
+ }
+ $parameterSet = $PSCmdlet.ParameterSetName
+
+ if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) {
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString()
+ }
+ $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ if ($preTelemetryId -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId =(New-Guid).ToString()
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Create', $MyInvocation, $parameterSet, $PSCmdlet)
+ } else {
+ $internalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ if ($internalCalledCmdlets -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $MyInvocation.MyCommand.Name
+ } else {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets += ',' + $MyInvocation.MyCommand.Name
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = 'internal'
+ }
+
+ $mapping = @{
+ Get = 'Az.DnsResolver.private\Get-AzDnsResolverPolicy_Get';
+ GetViaIdentity = 'Az.DnsResolver.private\Get-AzDnsResolverPolicy_GetViaIdentity';
+ List = 'Az.DnsResolver.private\Get-AzDnsResolverPolicy_List';
+ List1 = 'Az.DnsResolver.private\Get-AzDnsResolverPolicy_List1';
+ List2 = 'Az.DnsResolver.private\Get-AzDnsResolverPolicy_List2';
+ }
+ if (('Get', 'List', 'List1', 'List2') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) {
+ $testPlayback = $false
+ $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } }
+ if ($testPlayback) {
+ $PSBoundParameters['SubscriptionId'] = . (Join-Path $PSScriptRoot '..' 'utils' 'Get-SubscriptionIdTestSafe.ps1')
+ } else {
+ $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id
+ }
+ }
+ $cmdInfo = Get-Command -Name $mapping[$parameterSet]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ if ($null -ne $MyInvocation.MyCommand -and [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets -notcontains $MyInvocation.MyCommand.Name -and [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ContainsPreviewAttribute($cmdInfo, $MyInvocation)){
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessPreviewMessageAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name)
+ }
+ $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
+ $scriptCmd = {& $wrappedCmd @PSBoundParameters}
+ $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
+ $steppablePipeline.Begin($PSCmdlet)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+
+process {
+ try {
+ $steppablePipeline.Process($_)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+
+ finally {
+ $backupTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ $backupInternalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+
+}
+end {
+ try {
+ $steppablePipeline.End()
+
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $backupTelemetryId
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $backupInternalCalledCmdlets
+ if ($preTelemetryId -eq '') {
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Send', $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $preTelemetryId
+
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+}
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverPolicyDnsSecurityRule.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverPolicyDnsSecurityRule.ps1
new file mode 100644
index 000000000000..fc9dc0e0d7ef
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverPolicyDnsSecurityRule.ps1
@@ -0,0 +1,239 @@
+
+# ----------------------------------------------------------------------------------
+# 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.
+# ----------------------------------------------------------------------------------
+
+<#
+.Synopsis
+Gets properties of a DNS security rule for a DNS resolver policy.
+.Description
+Gets properties of a DNS security rule for a DNS resolver policy.
+.Example
+Get-AzDnsResolverPolicyDnsSecurityRule -ResourceGroupName exampleResourceGroup -DnsResolverPolicyName exampleDnsResolverPolicy
+.Example
+Get-AzDnsResolverPolicyDnsSecurityRule -ResourceGroupName powershell-test-rg -DnsResolverPolicyName $resolverPolicyName -Name psdnssecurityrulename33nmy1fz
+
+.Inputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
+.Outputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsSecurityRule
+.Notes
+COMPLEX PARAMETER PROPERTIES
+
+To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
+
+INPUTOBJECT : Identity Parameter
+ [DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
+ [DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
+ [ForwardingRuleName ]: The name of the forwarding rule.
+ [Id ]: Resource identity path
+ [InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
+ [OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
+ [ResourceGroupName ]: The name of the resource group. The name is case insensitive.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
+ [VirtualNetworkLinkName ]: The name of the virtual network link.
+ [VirtualNetworkName ]: The name of the virtual network.
+.Link
+https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsresolverpolicydnssecurityrule
+#>
+function Get-AzDnsResolverPolicyDnsSecurityRule {
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsSecurityRule])]
+[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
+param(
+ [Parameter(ParameterSetName='Get', Mandatory)]
+ [Parameter(ParameterSetName='List', Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the DNS resolver policy.
+ ${DnsResolverPolicyName},
+
+ [Parameter(ParameterSetName='Get', Mandatory)]
+ [Alias('DnsSecurityRuleName')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the DNS security rule.
+ ${Name},
+
+ [Parameter(ParameterSetName='Get', Mandatory)]
+ [Parameter(ParameterSetName='List', Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the resource group.
+ # The name is case insensitive.
+ ${ResourceGroupName},
+
+ [Parameter(ParameterSetName='Get')]
+ [Parameter(ParameterSetName='List')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
+ [System.String[]]
+ # The ID of the target subscription.
+ # The value must be an UUID.
+ ${SubscriptionId},
+
+ [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity]
+ # Identity Parameter
+ # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
+ ${InputObject},
+
+ [Parameter(ParameterSetName='List')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Query')]
+ [System.Int32]
+ # The maximum number of results to return.
+ # If not specified, returns up to 100 results.
+ ${Top},
+
+ [Parameter()]
+ [Alias('AzureRMContext', 'AzureCredential')]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Azure')]
+ [System.Management.Automation.PSObject]
+ # The DefaultProfile parameter is not functional.
+ # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.
+ ${DefaultProfile},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Wait for .NET debugger to attach
+ ${Break},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be appended to the front of the pipeline
+ ${HttpPipelineAppend},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be prepended to the front of the pipeline
+ ${HttpPipelinePrepend},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Uri]
+ # The URI for the proxy server to use
+ ${Proxy},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.PSCredential]
+ # Credentials for a proxy server to use for the remote call
+ ${ProxyCredential},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Use the default credentials for the proxy
+ ${ProxyUseDefaultCredentials}
+)
+
+begin {
+ try {
+ $outBuffer = $null
+ if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
+ $PSBoundParameters['OutBuffer'] = 1
+ }
+ $parameterSet = $PSCmdlet.ParameterSetName
+
+ if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) {
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString()
+ }
+ $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ if ($preTelemetryId -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId =(New-Guid).ToString()
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Create', $MyInvocation, $parameterSet, $PSCmdlet)
+ } else {
+ $internalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ if ($internalCalledCmdlets -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $MyInvocation.MyCommand.Name
+ } else {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets += ',' + $MyInvocation.MyCommand.Name
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = 'internal'
+ }
+
+ $mapping = @{
+ Get = 'Az.DnsResolver.private\Get-AzDnsResolverPolicyDnsSecurityRule_Get';
+ GetViaIdentity = 'Az.DnsResolver.private\Get-AzDnsResolverPolicyDnsSecurityRule_GetViaIdentity';
+ List = 'Az.DnsResolver.private\Get-AzDnsResolverPolicyDnsSecurityRule_List';
+ }
+ if (('Get', 'List') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) {
+ $testPlayback = $false
+ $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } }
+ if ($testPlayback) {
+ $PSBoundParameters['SubscriptionId'] = . (Join-Path $PSScriptRoot '..' 'utils' 'Get-SubscriptionIdTestSafe.ps1')
+ } else {
+ $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id
+ }
+ }
+ $cmdInfo = Get-Command -Name $mapping[$parameterSet]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ if ($null -ne $MyInvocation.MyCommand -and [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets -notcontains $MyInvocation.MyCommand.Name -and [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ContainsPreviewAttribute($cmdInfo, $MyInvocation)){
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessPreviewMessageAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name)
+ }
+ $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
+ $scriptCmd = {& $wrappedCmd @PSBoundParameters}
+ $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
+ $steppablePipeline.Begin($PSCmdlet)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+
+process {
+ try {
+ $steppablePipeline.Process($_)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+
+ finally {
+ $backupTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ $backupInternalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+
+}
+end {
+ try {
+ $steppablePipeline.End()
+
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $backupTelemetryId
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $backupInternalCalledCmdlets
+ if ($preTelemetryId -eq '') {
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Send', $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $preTelemetryId
+
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+}
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverPolicyVirtualNetworkLink.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverPolicyVirtualNetworkLink.ps1
new file mode 100644
index 000000000000..246c40c06acd
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/Get-AzDnsResolverPolicyVirtualNetworkLink.ps1
@@ -0,0 +1,239 @@
+
+# ----------------------------------------------------------------------------------
+# 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.
+# ----------------------------------------------------------------------------------
+
+<#
+.Synopsis
+Gets properties of a DNS resolver policy virtual network link.
+.Description
+Gets properties of a DNS resolver policy virtual network link.
+.Example
+Get-AzDnsResolverPolicyVirtualNetworkLink -ResourceGroupName exampleResourceGroup -DnsResolverPolicyName exampleDnsResolverPolicy
+.Example
+Get-AzDnsResolverPolicyVirtualNetworkLink -ResourceGroupName powershell-test-rg -DnsResolverPolicyName $resolverPolicyName -Name psdnsresolverpolicylinkname33nmy1fz
+
+.Inputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
+.Outputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverPolicyVirtualNetworkLink
+.Notes
+COMPLEX PARAMETER PROPERTIES
+
+To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
+
+INPUTOBJECT : Identity Parameter
+ [DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
+ [DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
+ [ForwardingRuleName ]: The name of the forwarding rule.
+ [Id ]: Resource identity path
+ [InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
+ [OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
+ [ResourceGroupName ]: The name of the resource group. The name is case insensitive.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
+ [VirtualNetworkLinkName ]: The name of the virtual network link.
+ [VirtualNetworkName ]: The name of the virtual network.
+.Link
+https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsresolverpolicyvirtualnetworklink
+#>
+function Get-AzDnsResolverPolicyVirtualNetworkLink {
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverPolicyVirtualNetworkLink])]
+[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
+param(
+ [Parameter(ParameterSetName='Get', Mandatory)]
+ [Parameter(ParameterSetName='List', Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the DNS resolver policy.
+ ${DnsResolverPolicyName},
+
+ [Parameter(ParameterSetName='Get', Mandatory)]
+ [Alias('DnsResolverPolicyVirtualNetworkLinkName')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ ${Name},
+
+ [Parameter(ParameterSetName='Get', Mandatory)]
+ [Parameter(ParameterSetName='List', Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the resource group.
+ # The name is case insensitive.
+ ${ResourceGroupName},
+
+ [Parameter(ParameterSetName='Get')]
+ [Parameter(ParameterSetName='List')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
+ [System.String[]]
+ # The ID of the target subscription.
+ # The value must be an UUID.
+ ${SubscriptionId},
+
+ [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity]
+ # Identity Parameter
+ # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
+ ${InputObject},
+
+ [Parameter(ParameterSetName='List')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Query')]
+ [System.Int32]
+ # The maximum number of results to return.
+ # If not specified, returns up to 100 results.
+ ${Top},
+
+ [Parameter()]
+ [Alias('AzureRMContext', 'AzureCredential')]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Azure')]
+ [System.Management.Automation.PSObject]
+ # The DefaultProfile parameter is not functional.
+ # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.
+ ${DefaultProfile},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Wait for .NET debugger to attach
+ ${Break},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be appended to the front of the pipeline
+ ${HttpPipelineAppend},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be prepended to the front of the pipeline
+ ${HttpPipelinePrepend},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Uri]
+ # The URI for the proxy server to use
+ ${Proxy},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.PSCredential]
+ # Credentials for a proxy server to use for the remote call
+ ${ProxyCredential},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Use the default credentials for the proxy
+ ${ProxyUseDefaultCredentials}
+)
+
+begin {
+ try {
+ $outBuffer = $null
+ if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
+ $PSBoundParameters['OutBuffer'] = 1
+ }
+ $parameterSet = $PSCmdlet.ParameterSetName
+
+ if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) {
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString()
+ }
+ $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ if ($preTelemetryId -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId =(New-Guid).ToString()
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Create', $MyInvocation, $parameterSet, $PSCmdlet)
+ } else {
+ $internalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ if ($internalCalledCmdlets -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $MyInvocation.MyCommand.Name
+ } else {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets += ',' + $MyInvocation.MyCommand.Name
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = 'internal'
+ }
+
+ $mapping = @{
+ Get = 'Az.DnsResolver.private\Get-AzDnsResolverPolicyVirtualNetworkLink_Get';
+ GetViaIdentity = 'Az.DnsResolver.private\Get-AzDnsResolverPolicyVirtualNetworkLink_GetViaIdentity';
+ List = 'Az.DnsResolver.private\Get-AzDnsResolverPolicyVirtualNetworkLink_List';
+ }
+ if (('Get', 'List') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) {
+ $testPlayback = $false
+ $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } }
+ if ($testPlayback) {
+ $PSBoundParameters['SubscriptionId'] = . (Join-Path $PSScriptRoot '..' 'utils' 'Get-SubscriptionIdTestSafe.ps1')
+ } else {
+ $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id
+ }
+ }
+ $cmdInfo = Get-Command -Name $mapping[$parameterSet]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ if ($null -ne $MyInvocation.MyCommand -and [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets -notcontains $MyInvocation.MyCommand.Name -and [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ContainsPreviewAttribute($cmdInfo, $MyInvocation)){
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessPreviewMessageAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name)
+ }
+ $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
+ $scriptCmd = {& $wrappedCmd @PSBoundParameters}
+ $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
+ $steppablePipeline.Begin($PSCmdlet)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+
+process {
+ try {
+ $steppablePipeline.Process($_)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+
+ finally {
+ $backupTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ $backupInternalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+
+}
+end {
+ try {
+ $steppablePipeline.End()
+
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $backupTelemetryId
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $backupInternalCalledCmdlets
+ if ($preTelemetryId -eq '') {
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Send', $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $preTelemetryId
+
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+}
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsForwardingRuleset.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsForwardingRuleset.ps1
index 477ee39bf162..ba5768c75e7b 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsForwardingRuleset.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsForwardingRuleset.ps1
@@ -27,7 +27,7 @@ New-AzDnsResolverOutboundEndpoint -DnsResolverName sampleResolver -Name sampleOu
New-AzDnsForwardingRuleset -Name dnsForwardingRuleset -ResourceGroupName sampleRG -Location westus2 -DnsResolverOutboundEndpoint @{id = "/subscriptions/ea40042d-63d8-4d02-9261-fb31450e6c64/resourceGroups/sampleRG/providers/Microsoft.Network/dnsResolvers/sampleResolver/outboundEndpoints/sampleOutboundEndpoint";} -Tag @{"key0" = "value0"}
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IDnsForwardingRuleset
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsForwardingRuleset
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -39,7 +39,7 @@ DNSRESOLVEROUTBOUNDENDPOINT : The reference to the DNS resolver
https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsforwardingruleset
#>
function New-AzDnsForwardingRuleset {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IDnsForwardingRuleset])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsForwardingRuleset])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(Mandatory)]
@@ -61,6 +61,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter()]
@@ -81,7 +82,7 @@ param(
[Parameter(Mandatory)]
[AllowEmptyCollection()]
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
- [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ISubResource[]]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ISubResource[]]
# The reference to the DNS resolver outbound endpoints that are used to route DNS queries matching the forwarding rules in the ruleset to the target DNS servers.
# To construct, see NOTES section for DNSRESOLVEROUTBOUNDENDPOINT properties and create a hash table.
${DnsResolverOutboundEndpoint},
@@ -94,7 +95,7 @@ param(
[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
- [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.ITrackedResourceTags]))]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.ITrackedResourceTags]))]
[System.Collections.Hashtable]
# Resource tags.
${Tag},
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsForwardingRulesetForwardingRule.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsForwardingRulesetForwardingRule.ps1
index 1753f536c72f..4b0f271cecb1 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsForwardingRulesetForwardingRule.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsForwardingRulesetForwardingRule.ps1
@@ -27,7 +27,7 @@ $targetIPConfig = New-AzDnsResolverIPConfigurationObject -PrivateIPAddress 10.0.
New-AzDnsForwardingRulesetForwardingRule -DnsForwardingRulesetName dnsForwardingRuleset -Name sampleForwardingRule -ResourceGroupName sampleRG -TargetDnsServer $targetIPConfig -Metadata @{"key0" = "value0"}
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IForwardingRule
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IForwardingRule
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -40,7 +40,7 @@ TARGETDNSSERVER : DNS servers to forward the DNS query to.
https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsforwardingrulesetforwardingrule
#>
function New-AzDnsForwardingRulesetForwardingRule {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IForwardingRule])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IForwardingRule])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(Mandatory)]
@@ -68,6 +68,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter()]
@@ -94,7 +95,7 @@ param(
[Parameter(Mandatory)]
[AllowEmptyCollection()]
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
- [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.ITargetDnsServer[]]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ITargetDnsServer[]]
# DNS servers to forward the DNS query to.
# To construct, see NOTES section for TARGETDNSSERVER properties and create a hash table.
${TargetDnsServer},
@@ -108,7 +109,7 @@ param(
[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
- [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IForwardingRulePropertiesMetadata]))]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IForwardingRulePropertiesMetadata]))]
[System.Collections.Hashtable]
# Metadata attached to the forwarding rule.
${Metadata},
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsForwardingRulesetVirtualNetworkLink.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsForwardingRulesetVirtualNetworkLink.ps1
index a83265e7f07c..2a31dc51c031 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsForwardingRulesetVirtualNetworkLink.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsForwardingRulesetVirtualNetworkLink.ps1
@@ -25,12 +25,12 @@ New-AzDnsForwardingRulesetVirtualNetworkLink -DnsForwardingRulesetName dnsForwar
New-AzDnsForwardingRulesetVirtualNetworkLink -DnsForwardingRulesetName dnsForwardingRuleset -Name sampleVnetLink -ResourceGroupName sampleRG -VirtualNetworkId "/subscriptions/ea40042d-63d8-4d02-9261-fb31450e6c64/resourceGroups/sampleRG/providers/Microsoft.Network/virtualNetworks/vnet-hub" -Metadata @{"key0" = "value0"}
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IVirtualNetworkLink
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IVirtualNetworkLink
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsforwardingrulesetvirtualnetworklink
#>
function New-AzDnsForwardingRulesetVirtualNetworkLink {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IVirtualNetworkLink])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IVirtualNetworkLink])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(Mandatory)]
@@ -58,6 +58,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter()]
@@ -83,7 +84,7 @@ param(
[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
- [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IVirtualNetworkLinkPropertiesMetadata]))]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IVirtualNetworkLinkPropertiesMetadata]))]
[System.Collections.Hashtable]
# Metadata attached to the virtual network link.
${Metadata},
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolver.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolver.ps1
index 5319ba6750f6..b6003d2a86ca 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolver.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolver.ps1
@@ -25,12 +25,12 @@ New-AzDnsResolver -Name sampleResolver -ResourceGroupName powershell-test-rg -Vi
New-AzDnsResolver -Name sampleResolver -ResourceGroupName powershell-test-rg -VirtualNetworkId /subscriptions/0e5a46b1-de0b-4ec3-a5d7-dda908b4e076/resourceGroups/powershell-test-rg/providers/Microsoft.Network/virtualNetworks/psvirtualnetworkname16y71mjc -Location westus2 -Tag @{"key0" = "value0"}
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IDnsResolver
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolver
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsresolver
#>
function New-AzDnsResolver {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IDnsResolver])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolver])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(Mandatory)]
@@ -52,6 +52,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter()]
@@ -83,7 +84,7 @@ param(
[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
- [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.ITrackedResourceTags]))]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.ITrackedResourceTags]))]
[System.Collections.Hashtable]
# Resource tags.
${Tag},
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverDomainList.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverDomainList.ps1
new file mode 100644
index 000000000000..03886bbb5ef8
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverDomainList.ps1
@@ -0,0 +1,239 @@
+
+# ----------------------------------------------------------------------------------
+# 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.
+# ----------------------------------------------------------------------------------
+
+<#
+.Synopsis
+Creates or updates a DNS resolver domain list.
+.Description
+Creates or updates a DNS resolver domain list.
+.Example
+New-AzDnsResolverDomainList -Name sampleResolverDomainList -ResourceGroupName powershell-test-rg -Location westus2 -Domain @("contoso.com.", "example.com.")
+.Example
+New-AzDnsResolverDomainList -Name sampleResolverDomainList -ResourceGroupName powershell-test-rg -Location westus2 -Domain @("contoso.com.", "example.com.") -Tag @{"key0" = "value0"}
+
+.Outputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverDomainList
+.Link
+https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsresolverdomainlist
+#>
+function New-AzDnsResolverDomainList {
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverDomainList])]
+[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
+param(
+ [Parameter(Mandatory)]
+ [Alias('DnsResolverDomainListName')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the DNS resolver domain list.
+ ${Name},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the resource group.
+ # The name is case insensitive.
+ ${ResourceGroupName},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
+ [System.String]
+ # The ID of the target subscription.
+ # The value must be an UUID.
+ ${SubscriptionId},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Header')]
+ [System.String]
+ # ETag of the resource.
+ # Omit this value to always overwrite the current resource.
+ # Specify the last-seen ETag value to prevent accidentally overwriting any concurrent changes.
+ ${IfMatch},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Header')]
+ [System.String]
+ # Set to '*' to allow a new resource to be created, but to prevent updating an existing resource.
+ # Other values will be ignored.
+ ${IfNoneMatch},
+
+ [Parameter(Mandatory)]
+ [AllowEmptyCollection()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [System.String[]]
+ # The domains in the domain list.
+ ${Domain},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [System.String]
+ # The geo-location where the resource lives
+ ${Location},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.ITrackedResourceTags]))]
+ [System.Collections.Hashtable]
+ # Resource tags.
+ ${Tag},
+
+ [Parameter()]
+ [Alias('AzureRMContext', 'AzureCredential')]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Azure')]
+ [System.Management.Automation.PSObject]
+ # The DefaultProfile parameter is not functional.
+ # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.
+ ${DefaultProfile},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Run the command as a job
+ ${AsJob},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Wait for .NET debugger to attach
+ ${Break},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be appended to the front of the pipeline
+ ${HttpPipelineAppend},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be prepended to the front of the pipeline
+ ${HttpPipelinePrepend},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Run the command asynchronously
+ ${NoWait},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Uri]
+ # The URI for the proxy server to use
+ ${Proxy},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.PSCredential]
+ # Credentials for a proxy server to use for the remote call
+ ${ProxyCredential},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Use the default credentials for the proxy
+ ${ProxyUseDefaultCredentials}
+)
+
+begin {
+ try {
+ $outBuffer = $null
+ if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
+ $PSBoundParameters['OutBuffer'] = 1
+ }
+ $parameterSet = $PSCmdlet.ParameterSetName
+
+ if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) {
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString()
+ }
+ $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ if ($preTelemetryId -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId =(New-Guid).ToString()
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Create', $MyInvocation, $parameterSet, $PSCmdlet)
+ } else {
+ $internalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ if ($internalCalledCmdlets -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $MyInvocation.MyCommand.Name
+ } else {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets += ',' + $MyInvocation.MyCommand.Name
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = 'internal'
+ }
+
+ $mapping = @{
+ CreateExpanded = 'Az.DnsResolver.private\New-AzDnsResolverDomainList_CreateExpanded';
+ }
+ if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) {
+ $testPlayback = $false
+ $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } }
+ if ($testPlayback) {
+ $PSBoundParameters['SubscriptionId'] = . (Join-Path $PSScriptRoot '..' 'utils' 'Get-SubscriptionIdTestSafe.ps1')
+ } else {
+ $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id
+ }
+ }
+ $cmdInfo = Get-Command -Name $mapping[$parameterSet]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ if ($null -ne $MyInvocation.MyCommand -and [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets -notcontains $MyInvocation.MyCommand.Name -and [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ContainsPreviewAttribute($cmdInfo, $MyInvocation)){
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessPreviewMessageAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name)
+ }
+ $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
+ $scriptCmd = {& $wrappedCmd @PSBoundParameters}
+ $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
+ $steppablePipeline.Begin($PSCmdlet)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+
+process {
+ try {
+ $steppablePipeline.Process($_)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+
+ finally {
+ $backupTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ $backupInternalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+
+}
+end {
+ try {
+ $steppablePipeline.End()
+
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $backupTelemetryId
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $backupInternalCalledCmdlets
+ if ($preTelemetryId -eq '') {
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Send', $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $preTelemetryId
+
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+}
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverIPConfigurationObject.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverIPConfigurationObject.ps1
index 88348a090d91..627d45bac83c 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverIPConfigurationObject.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverIPConfigurationObject.ps1
@@ -23,12 +23,12 @@ Create a in-memory object for IPConfiguration
New-AzDnsResolverIPConfigurationObject -PrivateIPAddress 1.1.2.12 -PrivateIPAllocationMethod Dynamic -SubnetId /subscriptions/0e5a46b1-de0b-4ec3-a5d7-dda908b4e076/resourceGroups/powershell-test-rg/providers/Microsoft.Network/virtualNetworks/psvirtualnetworkname44yqt9mb/subnets/pssubnetname44c6v0lr
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IPConfiguration
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IPConfiguration
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsresolveripconfigurationobject
#>
function New-AzDnsResolverIPConfigurationObject {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IPConfiguration])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IPConfiguration])]
[CmdletBinding(PositionalBinding=$false)]
param(
[Parameter()]
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverInboundEndpoint.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverInboundEndpoint.ps1
index 215176d0e5dd..b69eaaa510b0 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverInboundEndpoint.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverInboundEndpoint.ps1
@@ -27,7 +27,7 @@ New-AzDnsResolverInboundEndpoint -DnsResolverName pstestdnsresolvername -Name sa
New-AzDnsResolverInboundEndpoint -DnsResolverName pstestdnsresolvername -Name sampleInboundEndpoint1 -ResourceGroupName powershell-test-rg -IPConfiguration $ipConfiguration -Tag @{"key0" = "value0"}
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IInboundEndpoint
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IInboundEndpoint
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -41,7 +41,7 @@ IPCONFIGURATION : IP configurations for the inbound endpoint
https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsresolverinboundendpoint
#>
function New-AzDnsResolverInboundEndpoint {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IInboundEndpoint])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IInboundEndpoint])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(Mandatory)]
@@ -69,6 +69,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter()]
@@ -89,7 +90,7 @@ param(
[Parameter(Mandatory)]
[AllowEmptyCollection()]
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
- [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IIPConfiguration[]]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IIPConfiguration[]]
# IP configurations for the inbound endpoint.
# To construct, see NOTES section for IPCONFIGURATION properties and create a hash table.
${IPConfiguration},
@@ -102,7 +103,7 @@ param(
[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
- [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.ITrackedResourceTags]))]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.ITrackedResourceTags]))]
[System.Collections.Hashtable]
# Resource tags.
${Tag},
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverOutboundEndpoint.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverOutboundEndpoint.ps1
index 734576a14e76..7021a4eee924 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverOutboundEndpoint.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverOutboundEndpoint.ps1
@@ -25,12 +25,12 @@ New-AzDnsResolverOutboundEndpoint -DnsResolverName sampleResolver -Name sampleOu
New-AzDnsResolverOutboundEndpoint -DnsResolverName sampleResolver -Name sampleOutboundEndpoint -ResourceGroupName powershell-test-rg -SubscriptionId ea40042d-63d8-4d02-9261-fb31450e6c67 -SubnetId "/subscriptions/0e5a46b1-de0b-4ec3-a5d7-dda908b4e076/resourceGroups/powershell-test-08b4e076/resourceGroups/powershell-test-rg/providers/Microsoft.Network/virtualNetworks/psvirtualnetworkname16y71mjc/subnets/test-subnet" -Location westus2 -Tag @{"key0" = "value0"}
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IOutboundEndpoint
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IOutboundEndpoint
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsresolveroutboundendpoint
#>
function New-AzDnsResolverOutboundEndpoint {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IOutboundEndpoint])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IOutboundEndpoint])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(Mandatory)]
@@ -58,6 +58,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter()]
@@ -89,7 +90,7 @@ param(
[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
- [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20.ITrackedResourceTags]))]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.ITrackedResourceTags]))]
[System.Collections.Hashtable]
# Resource tags.
${Tag},
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverPolicy.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverPolicy.ps1
new file mode 100644
index 000000000000..d6c1cb7af809
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverPolicy.ps1
@@ -0,0 +1,232 @@
+
+# ----------------------------------------------------------------------------------
+# 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.
+# ----------------------------------------------------------------------------------
+
+<#
+.Synopsis
+Creates or updates a DNS resolver policy.
+.Description
+Creates or updates a DNS resolver policy.
+.Example
+New-AzDnsResolverPolicy -Name sampleResolverPolicy -ResourceGroupName powershell-test-rg -Location westus2
+.Example
+New-AzDnsResolverPolicy -Name sampleResolverPolicy -ResourceGroupName powershell-test-rg -Location westus2 -Tag @{"key0" = "value0"}
+
+.Outputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverPolicy
+.Link
+https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsresolverpolicy
+#>
+function New-AzDnsResolverPolicy {
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverPolicy])]
+[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
+param(
+ [Parameter(Mandatory)]
+ [Alias('DnsResolverPolicyName')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the DNS resolver policy.
+ ${Name},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the resource group.
+ # The name is case insensitive.
+ ${ResourceGroupName},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
+ [System.String]
+ # The ID of the target subscription.
+ # The value must be an UUID.
+ ${SubscriptionId},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Header')]
+ [System.String]
+ # ETag of the resource.
+ # Omit this value to always overwrite the current resource.
+ # Specify the last-seen ETag value to prevent accidentally overwriting any concurrent changes.
+ ${IfMatch},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Header')]
+ [System.String]
+ # Set to '*' to allow a new resource to be created, but to prevent updating an existing resource.
+ # Other values will be ignored.
+ ${IfNoneMatch},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [System.String]
+ # The geo-location where the resource lives
+ ${Location},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.ITrackedResourceTags]))]
+ [System.Collections.Hashtable]
+ # Resource tags.
+ ${Tag},
+
+ [Parameter()]
+ [Alias('AzureRMContext', 'AzureCredential')]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Azure')]
+ [System.Management.Automation.PSObject]
+ # The DefaultProfile parameter is not functional.
+ # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.
+ ${DefaultProfile},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Run the command as a job
+ ${AsJob},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Wait for .NET debugger to attach
+ ${Break},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be appended to the front of the pipeline
+ ${HttpPipelineAppend},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be prepended to the front of the pipeline
+ ${HttpPipelinePrepend},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Run the command asynchronously
+ ${NoWait},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Uri]
+ # The URI for the proxy server to use
+ ${Proxy},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.PSCredential]
+ # Credentials for a proxy server to use for the remote call
+ ${ProxyCredential},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Use the default credentials for the proxy
+ ${ProxyUseDefaultCredentials}
+)
+
+begin {
+ try {
+ $outBuffer = $null
+ if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
+ $PSBoundParameters['OutBuffer'] = 1
+ }
+ $parameterSet = $PSCmdlet.ParameterSetName
+
+ if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) {
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString()
+ }
+ $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ if ($preTelemetryId -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId =(New-Guid).ToString()
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Create', $MyInvocation, $parameterSet, $PSCmdlet)
+ } else {
+ $internalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ if ($internalCalledCmdlets -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $MyInvocation.MyCommand.Name
+ } else {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets += ',' + $MyInvocation.MyCommand.Name
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = 'internal'
+ }
+
+ $mapping = @{
+ CreateExpanded = 'Az.DnsResolver.private\New-AzDnsResolverPolicy_CreateExpanded';
+ }
+ if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) {
+ $testPlayback = $false
+ $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } }
+ if ($testPlayback) {
+ $PSBoundParameters['SubscriptionId'] = . (Join-Path $PSScriptRoot '..' 'utils' 'Get-SubscriptionIdTestSafe.ps1')
+ } else {
+ $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id
+ }
+ }
+ $cmdInfo = Get-Command -Name $mapping[$parameterSet]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ if ($null -ne $MyInvocation.MyCommand -and [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets -notcontains $MyInvocation.MyCommand.Name -and [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ContainsPreviewAttribute($cmdInfo, $MyInvocation)){
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessPreviewMessageAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name)
+ }
+ $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
+ $scriptCmd = {& $wrappedCmd @PSBoundParameters}
+ $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
+ $steppablePipeline.Begin($PSCmdlet)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+
+process {
+ try {
+ $steppablePipeline.Process($_)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+
+ finally {
+ $backupTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ $backupInternalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+
+}
+end {
+ try {
+ $steppablePipeline.End()
+
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $backupTelemetryId
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $backupInternalCalledCmdlets
+ if ($preTelemetryId -eq '') {
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Send', $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $preTelemetryId
+
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+}
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverPolicyDnsSecurityRule.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverPolicyDnsSecurityRule.ps1
new file mode 100644
index 000000000000..b7c97802faaa
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverPolicyDnsSecurityRule.ps1
@@ -0,0 +1,281 @@
+
+# ----------------------------------------------------------------------------------
+# 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.
+# ----------------------------------------------------------------------------------
+
+<#
+.Synopsis
+Creates or updates a DNS security rule for a DNS resolver policy.
+.Description
+Creates or updates a DNS security rule for a DNS resolver policy.
+.Example
+New-AzDnsResolverPolicyDnsSecurityRule -Name sampleSecurityRule -ResourceGroupName powershell-test-rg -DnsResolverPolicyName samplePolicyName -Location westus2 -DnsSecurityRuleState "Enabled" -ActionType "Block" -ActionBlockResponseCode "SERVFAIL" -Priority 100 -DnsResolverDomainList @{id = "/subscriptions/0e5a46b1-de0b-4ec3-a5d7-dda908b4e076/resourceGroups/powershell-test-rg/providers/Microsoft.Network/dnsResolverDomainLists/exampleDomainListName";}
+
+.Example
+New-AzDnsResolverPolicyDnsSecurityRule -Name sampleSecurityRule -ResourceGroupName powershell-test-rg -DnsResolverPolicyName samplePolicyName -Location westus2 -DnsSecurityRuleState "Enabled" -ActionType "Block" -ActionBlockResponseCode "SERVFAIL" -Priority 100 -DnsResolverDomainList @{id = "/subscriptions/0e5a46b1-de0b-4ec3-a5d7-dda908b4e076/resourceGroups/powershell-test-rg/providers/Microsoft.Network/dnsResolverDomainLists/exampleDomainListName";} -Tag @{"key0" = "value0"}
+
+.Outputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsSecurityRule
+.Notes
+COMPLEX PARAMETER PROPERTIES
+
+To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
+
+DNSRESOLVERDOMAINLIST : DNS resolver policy domains lists that the DNS security rule applies to.
+ Id : Resource ID.
+.Link
+https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsresolverpolicydnssecurityrule
+#>
+function New-AzDnsResolverPolicyDnsSecurityRule {
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsSecurityRule])]
+[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
+param(
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the DNS resolver policy.
+ ${DnsResolverPolicyName},
+
+ [Parameter(Mandatory)]
+ [Alias('DnsSecurityRuleName')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the DNS security rule.
+ ${Name},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the resource group.
+ # The name is case insensitive.
+ ${ResourceGroupName},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
+ [System.String]
+ # The ID of the target subscription.
+ # The value must be an UUID.
+ ${SubscriptionId},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Header')]
+ [System.String]
+ # ETag of the resource.
+ # Omit this value to always overwrite the current resource.
+ # Specify the last-seen ETag value to prevent accidentally overwriting any concurrent changes.
+ ${IfMatch},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Header')]
+ [System.String]
+ # Set to '*' to allow a new resource to be created, but to prevent updating an existing resource.
+ # Other values will be ignored.
+ ${IfNoneMatch},
+
+ [Parameter(Mandatory)]
+ [AllowEmptyCollection()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.ISubResource[]]
+ # DNS resolver policy domains lists that the DNS security rule applies to.
+ # To construct, see NOTES section for DNSRESOLVERDOMAINLIST properties and create a hash table.
+ ${DnsResolverDomainList},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [System.String]
+ # The geo-location where the resource lives
+ ${Location},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [System.Int32]
+ # The priority of the DNS security rule.
+ ${Priority},
+
+ [Parameter()]
+ [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Support.BlockResponseCode])]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Support.BlockResponseCode]
+ # The response code for block actions.
+ ${ActionBlockResponseCode},
+
+ [Parameter()]
+ [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Support.ActionType])]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Support.ActionType]
+ # The type of action to take.
+ ${ActionType},
+
+ [Parameter()]
+ [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Support.DnsSecurityRuleState])]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Support.DnsSecurityRuleState]
+ # The state of DNS security rule.
+ ${DnsSecurityRuleState},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.ITrackedResourceTags]))]
+ [System.Collections.Hashtable]
+ # Resource tags.
+ ${Tag},
+
+ [Parameter()]
+ [Alias('AzureRMContext', 'AzureCredential')]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Azure')]
+ [System.Management.Automation.PSObject]
+ # The DefaultProfile parameter is not functional.
+ # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.
+ ${DefaultProfile},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Run the command as a job
+ ${AsJob},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Wait for .NET debugger to attach
+ ${Break},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be appended to the front of the pipeline
+ ${HttpPipelineAppend},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be prepended to the front of the pipeline
+ ${HttpPipelinePrepend},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Run the command asynchronously
+ ${NoWait},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Uri]
+ # The URI for the proxy server to use
+ ${Proxy},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.PSCredential]
+ # Credentials for a proxy server to use for the remote call
+ ${ProxyCredential},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Use the default credentials for the proxy
+ ${ProxyUseDefaultCredentials}
+)
+
+begin {
+ try {
+ $outBuffer = $null
+ if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
+ $PSBoundParameters['OutBuffer'] = 1
+ }
+ $parameterSet = $PSCmdlet.ParameterSetName
+
+ if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) {
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString()
+ }
+ $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ if ($preTelemetryId -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId =(New-Guid).ToString()
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Create', $MyInvocation, $parameterSet, $PSCmdlet)
+ } else {
+ $internalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ if ($internalCalledCmdlets -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $MyInvocation.MyCommand.Name
+ } else {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets += ',' + $MyInvocation.MyCommand.Name
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = 'internal'
+ }
+
+ $mapping = @{
+ CreateExpanded = 'Az.DnsResolver.private\New-AzDnsResolverPolicyDnsSecurityRule_CreateExpanded';
+ }
+ if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) {
+ $testPlayback = $false
+ $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } }
+ if ($testPlayback) {
+ $PSBoundParameters['SubscriptionId'] = . (Join-Path $PSScriptRoot '..' 'utils' 'Get-SubscriptionIdTestSafe.ps1')
+ } else {
+ $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id
+ }
+ }
+ $cmdInfo = Get-Command -Name $mapping[$parameterSet]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ if ($null -ne $MyInvocation.MyCommand -and [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets -notcontains $MyInvocation.MyCommand.Name -and [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ContainsPreviewAttribute($cmdInfo, $MyInvocation)){
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessPreviewMessageAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name)
+ }
+ $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
+ $scriptCmd = {& $wrappedCmd @PSBoundParameters}
+ $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
+ $steppablePipeline.Begin($PSCmdlet)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+
+process {
+ try {
+ $steppablePipeline.Process($_)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+
+ finally {
+ $backupTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ $backupInternalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+
+}
+end {
+ try {
+ $steppablePipeline.End()
+
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $backupTelemetryId
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $backupInternalCalledCmdlets
+ if ($preTelemetryId -eq '') {
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Send', $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $preTelemetryId
+
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+}
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverPolicyVirtualNetworkLink.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverPolicyVirtualNetworkLink.ps1
new file mode 100644
index 000000000000..49de79b8acfa
--- /dev/null
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverPolicyVirtualNetworkLink.ps1
@@ -0,0 +1,244 @@
+
+# ----------------------------------------------------------------------------------
+# 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.
+# ----------------------------------------------------------------------------------
+
+<#
+.Synopsis
+Creates or updates a DNS resolver policy virtual network link.
+.Description
+Creates or updates a DNS resolver policy virtual network link.
+.Example
+New-AzDnsResolverPolicyVirtualNetworkLink -Name sampleResolverPolicyLink -ResourceGroupName powershell-test-rg -DnsResolverPolicyName samplePolicyName -VirtualNetworkId /subscriptions/0e5a46b1-de0b-4ec3-a5d7-dda908b4e076/resourceGroups/powershell-test-08b4e076/resourceGroups/powershell-test-rg/providers/Microsoft.Network/virtualNetworks/psvirtualnetworkname16y71mjc -Location westus2
+.Example
+New-AzDnsResolverPolicyVirtualNetworkLink -Name sampleResolverPolicyLink -ResourceGroupName powershell-test-rg -DnsResolverPolicyName samplePolicyName -VirtualNetworkId /subscriptions/0e5a46b1-de0b-4ec3-a5d7-dda908b4e076/resourceGroups/powershell-test-rg/providers/Microsoft.Network/virtualNetworks/psvirtualnetworkname16y71mjc -Location westus2 -Tag @{"key0" = "value0"}
+
+.Outputs
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverPolicyVirtualNetworkLink
+.Link
+https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsresolverpolicyvirtualnetworklink
+#>
+function New-AzDnsResolverPolicyVirtualNetworkLink {
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverPolicyVirtualNetworkLink])]
+[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
+param(
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the DNS resolver policy.
+ ${DnsResolverPolicyName},
+
+ [Parameter(Mandatory)]
+ [Alias('DnsResolverPolicyVirtualNetworkLinkName')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ ${Name},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [System.String]
+ # The name of the resource group.
+ # The name is case insensitive.
+ ${ResourceGroupName},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Path')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
+ [System.String]
+ # The ID of the target subscription.
+ # The value must be an UUID.
+ ${SubscriptionId},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Header')]
+ [System.String]
+ # ETag of the resource.
+ # Omit this value to always overwrite the current resource.
+ # Specify the last-seen ETag value to prevent accidentally overwriting any concurrent changes.
+ ${IfMatch},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Header')]
+ [System.String]
+ # Set to '*' to allow a new resource to be created, but to prevent updating an existing resource.
+ # Other values will be ignored.
+ ${IfNoneMatch},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [System.String]
+ # The geo-location where the resource lives
+ ${Location},
+
+ [Parameter(Mandatory)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [System.String]
+ # Resource ID.
+ ${VirtualNetworkId},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Body')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api50.ITrackedResourceTags]))]
+ [System.Collections.Hashtable]
+ # Resource tags.
+ ${Tag},
+
+ [Parameter()]
+ [Alias('AzureRMContext', 'AzureCredential')]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Azure')]
+ [System.Management.Automation.PSObject]
+ # The DefaultProfile parameter is not functional.
+ # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.
+ ${DefaultProfile},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Run the command as a job
+ ${AsJob},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Wait for .NET debugger to attach
+ ${Break},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be appended to the front of the pipeline
+ ${HttpPipelineAppend},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.SendAsyncStep[]]
+ # SendAsync Pipeline Steps to be prepended to the front of the pipeline
+ ${HttpPipelinePrepend},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Run the command asynchronously
+ ${NoWait},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Uri]
+ # The URI for the proxy server to use
+ ${Proxy},
+
+ [Parameter(DontShow)]
+ [ValidateNotNull()]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.PSCredential]
+ # Credentials for a proxy server to use for the remote call
+ ${ProxyCredential},
+
+ [Parameter(DontShow)]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Category('Runtime')]
+ [System.Management.Automation.SwitchParameter]
+ # Use the default credentials for the proxy
+ ${ProxyUseDefaultCredentials}
+)
+
+begin {
+ try {
+ $outBuffer = $null
+ if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
+ $PSBoundParameters['OutBuffer'] = 1
+ }
+ $parameterSet = $PSCmdlet.ParameterSetName
+
+ if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) {
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $PSVersionTable.PSVersion.ToString()
+ }
+ $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ if ($preTelemetryId -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId =(New-Guid).ToString()
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Create', $MyInvocation, $parameterSet, $PSCmdlet)
+ } else {
+ $internalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ if ($internalCalledCmdlets -eq '') {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $MyInvocation.MyCommand.Name
+ } else {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets += ',' + $MyInvocation.MyCommand.Name
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = 'internal'
+ }
+
+ $mapping = @{
+ CreateExpanded = 'Az.DnsResolver.private\New-AzDnsResolverPolicyVirtualNetworkLink_CreateExpanded';
+ }
+ if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) {
+ $testPlayback = $false
+ $PSBoundParameters['HttpPipelinePrepend'] | Foreach-Object { if ($_) { $testPlayback = $testPlayback -or ('Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.PipelineMock' -eq $_.Target.GetType().FullName -and 'Playback' -eq $_.Target.Mode) } }
+ if ($testPlayback) {
+ $PSBoundParameters['SubscriptionId'] = . (Join-Path $PSScriptRoot '..' 'utils' 'Get-SubscriptionIdTestSafe.ps1')
+ } else {
+ $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id
+ }
+ }
+ $cmdInfo = Get-Command -Name $mapping[$parameterSet]
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ if ($null -ne $MyInvocation.MyCommand -and [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets -notcontains $MyInvocation.MyCommand.Name -and [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ContainsPreviewAttribute($cmdInfo, $MyInvocation)){
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.MessageAttributeHelper]::ProcessPreviewMessageAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PromptedPreviewMessageCmdlets.Enqueue($MyInvocation.MyCommand.Name)
+ }
+ $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
+ $scriptCmd = {& $wrappedCmd @PSBoundParameters}
+ $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
+ $steppablePipeline.Begin($PSCmdlet)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+
+process {
+ try {
+ $steppablePipeline.Process($_)
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+
+ finally {
+ $backupTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId
+ $backupInternalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+
+}
+end {
+ try {
+ $steppablePipeline.End()
+
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $backupTelemetryId
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $backupInternalCalledCmdlets
+ if ($preTelemetryId -eq '') {
+ [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.module]::Instance.Telemetry.Invoke('Send', $MyInvocation, $parameterSet, $PSCmdlet)
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ }
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $preTelemetryId
+
+ } catch {
+ [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext()
+ throw
+ }
+}
+}
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverTargetDnsServerObject.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverTargetDnsServerObject.ps1
index bd937adf11c0..e763ac8664a3 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverTargetDnsServerObject.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/New-AzDnsResolverTargetDnsServerObject.ps1
@@ -23,12 +23,12 @@ Create a in-memory object for Target DNS server
New-AzDnsResolverIPConfigurationObject -PrivateIPAddress 10.0.0.3 -PrivateIPAllocationMethod Dynamic -SubnetId /subscriptions/ea40042d-63d8-4d02-9261-fb31450e6c67/resourceGroups/sampleRG/providers/Microsoft.Network/virtualNetworks/vnet-hub/subnets/test-subnet
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.TargetDnsServer
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.TargetDnsServer
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/new-azdnsresolvertargetdnsserverobject
#>
function New-AzDnsResolverTargetDnsServerObject {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.TargetDnsServer])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.TargetDnsServer])]
[CmdletBinding(PositionalBinding=$false)]
param(
[Parameter()]
diff --git a/src/DnsResolver/DnsResolver.Autorest/exports/ProxyCmdletDefinitions.ps1 b/src/DnsResolver/DnsResolver.Autorest/exports/ProxyCmdletDefinitions.ps1
index 5be64390a79e..345f6051c2a1 100644
--- a/src/DnsResolver/DnsResolver.Autorest/exports/ProxyCmdletDefinitions.ps1
+++ b/src/DnsResolver/DnsResolver.Autorest/exports/ProxyCmdletDefinitions.ps1
@@ -27,7 +27,7 @@ Get-AzDnsForwardingRulesetForwardingRule -DnsForwardingRulesetName DnsResolverNa
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IForwardingRule
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IForwardingRule
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -35,20 +35,24 @@ To create the parameters described below, construct a hash table containing the
INPUTOBJECT : Identity Parameter
[DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
[DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
[ForwardingRuleName ]: The name of the forwarding rule.
[Id ]: Resource identity path
[InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
[OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
[ResourceGroupName ]: The name of the resource group. The name is case insensitive.
- [SubscriptionId ]: The ID of the target subscription.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
[VirtualNetworkLinkName ]: The name of the virtual network link.
[VirtualNetworkName ]: The name of the virtual network.
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsforwardingrulesetforwardingrule
#>
function Get-AzDnsForwardingRulesetForwardingRule {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IForwardingRule])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IForwardingRule])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
@@ -79,6 +83,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String[]]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
@@ -246,7 +251,7 @@ Get-AzDnsForwardingRulesetVirtualNetworkLink -DnsForwardingRulesetName pstestdns
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IVirtualNetworkLink
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IVirtualNetworkLink
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -254,20 +259,24 @@ To create the parameters described below, construct a hash table containing the
INPUTOBJECT : Identity Parameter
[DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
[DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
[ForwardingRuleName ]: The name of the forwarding rule.
[Id ]: Resource identity path
[InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
[OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
[ResourceGroupName ]: The name of the resource group. The name is case insensitive.
- [SubscriptionId ]: The ID of the target subscription.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
[VirtualNetworkLinkName ]: The name of the virtual network link.
[VirtualNetworkName ]: The name of the virtual network.
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsforwardingrulesetvirtualnetworklink
#>
function Get-AzDnsForwardingRulesetVirtualNetworkLink {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IVirtualNetworkLink])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IVirtualNetworkLink])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
@@ -298,6 +307,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String[]]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
@@ -469,9 +479,9 @@ Get-AzDnsForwardingRuleset -ResourceGroupName sampleRG -VirtualNetworkName virtu
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IDnsForwardingRuleset
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsForwardingRuleset
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IVirtualNetworkDnsForwardingRuleset
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IVirtualNetworkDnsForwardingRuleset
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -479,20 +489,24 @@ To create the parameters described below, construct a hash table containing the
INPUTOBJECT : Identity Parameter
[DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
[DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
[ForwardingRuleName ]: The name of the forwarding rule.
[Id ]: Resource identity path
[InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
[OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
[ResourceGroupName ]: The name of the resource group. The name is case insensitive.
- [SubscriptionId ]: The ID of the target subscription.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
[VirtualNetworkLinkName ]: The name of the virtual network link.
[VirtualNetworkName ]: The name of the virtual network.
.Link
https://learn.microsoft.com/powershell/module/az.dnsresolver/get-azdnsforwardingruleset
#>
function Get-AzDnsForwardingRuleset {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IDnsForwardingRuleset], [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IVirtualNetworkDnsForwardingRuleset])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsForwardingRuleset], [Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IVirtualNetworkDnsForwardingRuleset])]
[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
@@ -519,6 +533,7 @@ param(
[Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String[]]
# The ID of the target subscription.
+ # The value must be an UUID.
${SubscriptionId},
[Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
@@ -685,18 +700,20 @@ end {
<#
.Synopsis
-Gets properties of an inbound endpoint for a DNS resolver.
+Gets properties of a DNS resolver domain list.
.Description
-Gets properties of an inbound endpoint for a DNS resolver.
+Gets properties of a DNS resolver domain list.
.Example
-Get-AzDnsResolverInboundEndpoint -DnsResolverName pstestdnsresolvername -ResourceGroupName powershell-test-rg
+Get-AzDnsResolverDomainList -SubscriptionId 0e5a46b1-de0b-4ec3-a5d7-dda908b4e076
.Example
-Get-AzDnsResolverInboundEndpoint -DnsResolverName pstestdnsresolvername -Name sampleInboundEndpoint -ResourceGroupName powershell-test-rg
+Get-AzDnsResolverDomainList -ResourceGroupName powershell-test-rg
+.Example
+Get-AzDnsResolverDomainList -ResourceGroupName powershell-test-rg -Name psdnsresolverdomainlistname33nmy1fz
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.IDnsResolverIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20220701.IInboundEndpoint
+Microsoft.Azure.PowerShell.Cmdlets.DnsResolver.Models.Api20230701Preview.IDnsResolverDomainList
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -704,34 +721,31 @@ To create the parameters described below, construct a hash table containing the
INPUTOBJECT : Identity Parameter
[DnsForwardingRulesetName ]: The name of the DNS forwarding ruleset.
+ [DnsResolverDomainListName ]: The name of the DNS resolver domain list.
[DnsResolverName ]: The name of the DNS resolver.
+ [DnsResolverPolicyName ]: The name of the DNS resolver policy.
+ [DnsResolverPolicyVirtualNetworkLinkName ]: The name of the DNS resolver policy virtual network link for the DNS resolver policy.
+ [DnsSecurityRuleName ]: The name of the DNS security rule.
[ForwardingRuleName ]: The name of the forwarding rule.
[Id ]: Resource identity path
[InboundEndpointName ]: The name of the inbound endpoint for the DNS resolver.
[OutboundEndpointName ]: The name of the outbound endpoint for the DNS resolver.
[ResourceGroupName ]: The name of the resource group. The name is case insensitive.
- [SubscriptionId ]: The ID of the target subscription.
+ [SubscriptionId ]: The ID of the target subscription. The value must be an UUID.
[VirtualNetworkLinkName