Skip to content

Remove ApiVersion Parameter and change Get-AzResourceGroupOperation implementation to use SDK#12642

Merged
msJinLei merged 19 commits intoAzure:Az.Resources-previewfrom
Xynoclafe:xynoclafe/apiversion
Sep 3, 2020
Merged

Remove ApiVersion Parameter and change Get-AzResourceGroupOperation implementation to use SDK#12642
msJinLei merged 19 commits intoAzure:Az.Resources-previewfrom
Xynoclafe:xynoclafe/apiversion

Conversation

@Xynoclafe
Copy link
Copy Markdown
Contributor

@Xynoclafe Xynoclafe commented Aug 11, 2020

Description

Checklist

  • I have read the Submitting Changes section of CONTRIBUTING.md
  • The title of the PR is clear and informative
  • The appropriate ChangeLog.md file(s) has been updated:
    • For any service, the ChangeLog.md file can be found at src/{{SERVICE}}/{{SERVICE}}/ChangeLog.md
    • A snippet outlining the change(s) made in the PR should be written under the ## Upcoming Release header -- no new version header should be added
  • The PR does not introduce breaking changes
  • If applicable, the changes made in the PR have proper test coverage
  • For public API changes to cmdlets:
    • a cmdlet design review was approved for the changes in this repository (Microsoft internal only)
    • the markdown help files have been regenerated using the commands listed here

@adxsdkps
Copy link
Copy Markdown
Collaborator

Can one of the admins verify this patch?

@isra-fel
Copy link
Copy Markdown
Member

isra-fel commented Aug 13, 2020

For public API changes to cmdlets, a cmdlet design review was approved for the changes in this repository

Besides, removing a parameter is a breaking change. The nearest sprint open for breaking changes will be S177. We suggest:

  1. Submit a design review and get it passed
  2. Add breaking change attributes to notify our customers in advance
  3. In S177, submit the PR to make breaking change

@Xynoclafe
Copy link
Copy Markdown
Contributor Author

For public API changes to cmdlets, a cmdlet design review was approved for the changes in this repository

Besides, removing a parameter is a breaking change. The nearest sprint open for breaking changes will be S177. We suggest:

  1. Submit a design review and get it passed
  2. Add breaking change attributes to notify our customers in advance
  3. In S177, submit the PR to make breaking change

Breaking change attributes have already been added and are present in the Master branch
Also, the PR in S177 would be made into Master and not into Az.Resources-preview branch right?

@isra-fel
Copy link
Copy Markdown
Member

Breaking change attributes have already been added and are present in the Master branch

Great

Also, the PR in S177 would be made into Master and not into Az.Resources-preview branch right?

Ah yes, but still please submit a design review. Thanks

@isra-fel isra-fel removed the Contains Breaking Change This PR contains breaking change label Aug 14, 2020
/// [CmdletParameterBreakingChange("SubscriptionId", ChangeDescription = "Parameter is deprecated and is a no-op parameter. It will be retired in a future release")]
[Parameter(Mandatory = false, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The subscription to use.")]
[ValidateNotNullOrEmpty]
public Guid? SubscriptionId { get; set; }
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

public Guid? SubscriptionId { get; set; } [](start = 8, length = 41)

Let's add a task on the board to remove this parameter later.

filizt
filizt previously approved these changes Aug 17, 2020
Copy link
Copy Markdown
Contributor

@filizt filizt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes LGTM. We might need to look at the failing pipeline tasks.

@Xynoclafe
Copy link
Copy Markdown
Contributor Author

Ah yes, but still please submit a design review. Thanks
Submitted a design review https://github.com/Azure/azure-powershell-cmdlet-review-pr/issues/707

@msJinLei
Copy link
Copy Markdown
Contributor

@Xynoclafe You need to suppress the breaking change warning in your PR to pass the static analysis.

Default value: None
Accept pipeline input: False
Accept wildcard characters: True
Accept wildcard characters: False
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if these are related to your changes.

@Xynoclafe
Copy link
Copy Markdown
Contributor Author

Xynoclafe commented Aug 19, 2020

@Xynoclafe You need to suppress the breaking change warning in your PR to pass the static analysis.

Working on it

@Xynoclafe
Copy link
Copy Markdown
Contributor Author

@msJinLei @isra-fel
What do I do about false positive static analysis errors? I updated the BreakingChangesIssues.csv file with all the issues that should arise from removal of ApiVersion, but the analysis still throws errors saying I've removed multiple parameter sets, which I have not. These issues go away on just adding the parameter back, so they are indeed false positives.
Should I suppress the other errors as well using the csv file? I am not too sure since that is not the error I am expecting with this change.

@msJinLei
Copy link
Copy Markdown
Contributor

/azp run

@azure-pipelines
Copy link
Copy Markdown
Contributor

Azure Pipelines successfully started running 3 pipeline(s).

@msJinLei
Copy link
Copy Markdown
Contributor

msJinLei commented Aug 26, 2020

@msJinLei @isra-fel
What do I do about false positive static analysis errors? I updated the BreakingChangesIssues.csv file with all the issues that should arise from removal of ApiVersion, but the analysis still throws errors saying I've removed multiple parameter sets, which I have not. These issues go away on just adding the parameter back, so they are indeed false positives.
Should I suppress the other errors as well using the csv file? I am not too sure since that is not the error I am expecting with this change.

We will check the errors since there are unexpected ones

@Xynoclafe
Copy link
Copy Markdown
Contributor Author

@msJinLei @isra-fel
What do I do about false positive static analysis errors? I updated the BreakingChangesIssues.csv file with all the issues that should arise from removal of ApiVersion, but the analysis still throws errors saying I've removed multiple parameter sets, which I have not. These issues go away on just adding the parameter back, so they are indeed false positives.
Should I suppress the other errors as well using the csv file? I am not too sure since that is not the error I am expecting with this change.

We will check the errors since there are unexpected ones

Any updates on this?

@msJinLei msJinLei self-assigned this Aug 31, 2020
@msJinLei
Copy link
Copy Markdown
Contributor

msJinLei commented Aug 31, 2020

@msJinLei @isra-fel
What do I do about false positive static analysis errors? I updated the BreakingChangesIssues.csv file with all the issues that should arise from removal of ApiVersion, but the analysis still throws errors saying I've removed multiple parameter sets, which I have not. These issues go away on just adding the parameter back, so they are indeed false positives.
Should I suppress the other errors as well using the csv file? I am not too sure since that is not the error I am expecting with this change.

We will check the errors since there are unexpected ones

Any updates on this?

They are not false positives errors.

When a parameter is removed from cmdlet, it is evaluated twice in static analysis.
The first time, we check all the parameters across different parameter sets per cmdlet to see whether a parameter is removed. If true, report breaking changes. This is what i have suppressed.
The second time, we check the parameters by each parameter set of cmdlet. If true, the breaking change is reported by parameter set. The problem here is the error message is always The parameter set '{0}' for cmdlet '{1}' has been removed. which is incomprehensible here.

And so please check the cmdlets and parameter sets reported to see whether there is any change in the parameter set, including removed parameters (optional or mandatory), additional mandatory parameters. If yes, just suppress the error.
In addition, you should regenerate the help files for all these cmdlets.

Sorry for the trouble, we will improve the tools in the future.

2020-08-26T06:22:17.3381160Z   "AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation"
2020-08-26T06:22:17.3382030Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentCmdlet","Get-AzManagementGroupDeployment","0","1050","The parameter set 'GetByDeploymentName' for cmdlet 'Get-AzManagementGroupDeployment' has been removed.","Add parameter set 'GetByDeploymentName' back to cmdlet 'Get-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3383555Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentCmdlet","Get-AzManagementGroupDeployment","0","1050","The parameter set 'GetByDeploymentId' for cmdlet 'Get-AzManagementGroupDeployment' has been removed.","Add parameter set 'GetByDeploymentId' back to cmdlet 'Get-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3385011Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentCmdlet","Get-AzManagementGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzManagementGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3386995Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentOperationCmdlet","Get-AzManagementGroupDeploymentOperation","0","1050","The parameter set 'GetByDeploymentName' for cmdlet 'Get-AzManagementGroupDeploymentOperation' has been removed.","Add parameter set 'GetByDeploymentName' back to cmdlet 'Get-AzManagementGroupDeploymentOperation'."
2020-08-26T06:22:17.3388552Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentOperationCmdlet","Get-AzManagementGroupDeploymentOperation","0","1050","The parameter set 'GetByDeploymentObject' for cmdlet 'Get-AzManagementGroupDeploymentOperation' has been removed.","Add parameter set 'GetByDeploymentObject' back to cmdlet 'Get-AzManagementGroupDeploymentOperation'."
2020-08-26T06:22:17.3391282Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentOperationCmdlet","Get-AzManagementGroupDeploymentOperation","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzManagementGroupDeploymentOperation' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzManagementGroupDeploymentOperation'."
2020-08-26T06:22:17.3392595Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentCmdlet","Get-AzDeployment","0","1050","The parameter set 'GetByDeploymentName' for cmdlet 'Get-AzDeployment' has been removed.","Add parameter set 'GetByDeploymentName' back to cmdlet 'Get-AzDeployment'."
2020-08-26T06:22:17.3393721Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentCmdlet","Get-AzDeployment","0","1050","The parameter set 'GetByDeploymentId' for cmdlet 'Get-AzDeployment' has been removed.","Add parameter set 'GetByDeploymentId' back to cmdlet 'Get-AzDeployment'."
2020-08-26T06:22:17.3394943Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentCmdlet","Get-AzDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzDeployment'."
2020-08-26T06:22:17.3397231Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentOperationCmdlet","Get-AzDeploymentOperation","0","1050","The parameter set 'GetByDeploymentName' for cmdlet 'Get-AzDeploymentOperation' has been removed.","Add parameter set 'GetByDeploymentName' back to cmdlet 'Get-AzDeploymentOperation'."
2020-08-26T06:22:17.3399082Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentOperationCmdlet","Get-AzDeploymentOperation","0","1050","The parameter set 'GetByDeploymentObject' for cmdlet 'Get-AzDeploymentOperation' has been removed.","Add parameter set 'GetByDeploymentObject' back to cmdlet 'Get-AzDeploymentOperation'."
2020-08-26T06:22:17.3400974Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentOperationCmdlet","Get-AzDeploymentOperation","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzDeploymentOperation' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzDeploymentOperation'."
2020-08-26T06:22:17.3402510Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3403928Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3405856Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3408043Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3409806Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3411520Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3413207Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3414824Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3416443Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3417853Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3419540Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3421017Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3422611Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Get-AzDeploymentWhatIfResult'."
2020-08-26T06:22:17.3423872Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentCmdlet","Get-AzTenantDeployment","0","1050","The parameter set 'GetByDeploymentName' for cmdlet 'Get-AzTenantDeployment' has been removed.","Add parameter set 'GetByDeploymentName' back to cmdlet 'Get-AzTenantDeployment'."
2020-08-26T06:22:17.3425208Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentCmdlet","Get-AzTenantDeployment","0","1050","The parameter set 'GetByDeploymentId' for cmdlet 'Get-AzTenantDeployment' has been removed.","Add parameter set 'GetByDeploymentId' back to cmdlet 'Get-AzTenantDeployment'."
2020-08-26T06:22:17.3427118Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentCmdlet","Get-AzTenantDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzTenantDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzTenantDeployment'."
2020-08-26T06:22:17.3428736Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentOperationCmdlet","Get-AzTenantDeploymentOperation","0","1050","The parameter set 'GetByDeploymentName' for cmdlet 'Get-AzTenantDeploymentOperation' has been removed.","Add parameter set 'GetByDeploymentName' back to cmdlet 'Get-AzTenantDeploymentOperation'."
2020-08-26T06:22:17.3430742Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentOperationCmdlet","Get-AzTenantDeploymentOperation","0","1050","The parameter set 'GetByDeploymentObject' for cmdlet 'Get-AzTenantDeploymentOperation' has been removed.","Add parameter set 'GetByDeploymentObject' back to cmdlet 'Get-AzTenantDeploymentOperation'."
2020-08-26T06:22:17.3431998Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentOperationCmdlet","Get-AzTenantDeploymentOperation","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzTenantDeploymentOperation' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzTenantDeploymentOperation'."
2020-08-26T06:22:17.3433375Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3434699Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3436453Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3437790Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3439097Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3440543Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3441958Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3443369Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3444887Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3446871Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3448364Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3450653Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3451987Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'New-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3453383Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3454657Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3455862Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3457090Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3458261Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3459475Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3460659Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3461971Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3463355Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3464556Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3467316Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3469476Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3471545Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'New-AzDeployment'."
2020-08-26T06:22:17.3472824Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3474022Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3475318Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3476587Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3477955Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3479184Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3480391Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3481605Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3483258Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3484518Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3486513Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3487950Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3489779Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'New-AzTenantDeployment'."
2020-08-26T06:22:17.3491239Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet","Remove-AzManagementGroupDeployment","0","1050","The parameter set 'RemoveByDeploymentName' for cmdlet 'Remove-AzManagementGroupDeployment' has been removed.","Add parameter set 'RemoveByDeploymentName' back to cmdlet 'Remove-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3493041Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet","Remove-AzManagementGroupDeployment","0","1050","The parameter set 'RemoveByDeploymentId' for cmdlet 'Remove-AzManagementGroupDeployment' has been removed.","Add parameter set 'RemoveByDeploymentId' back to cmdlet 'Remove-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3494327Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet","Remove-AzManagementGroupDeployment","0","1050","The parameter set 'RemoveByInputObject' for cmdlet 'Remove-AzManagementGroupDeployment' has been removed.","Add parameter set 'RemoveByInputObject' back to cmdlet 'Remove-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3495597Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet","Remove-AzManagementGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Remove-AzManagementGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Remove-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3496909Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet","Remove-AzDeployment","0","1050","The parameter set 'RemoveByDeploymentName' for cmdlet 'Remove-AzDeployment' has been removed.","Add parameter set 'RemoveByDeploymentName' back to cmdlet 'Remove-AzDeployment'."
2020-08-26T06:22:17.3498124Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet","Remove-AzDeployment","0","1050","The parameter set 'RemoveByDeploymentId' for cmdlet 'Remove-AzDeployment' has been removed.","Add parameter set 'RemoveByDeploymentId' back to cmdlet 'Remove-AzDeployment'."
2020-08-26T06:22:17.3499280Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet","Remove-AzDeployment","0","1050","The parameter set 'RemoveByInputObject' for cmdlet 'Remove-AzDeployment' has been removed.","Add parameter set 'RemoveByInputObject' back to cmdlet 'Remove-AzDeployment'."
2020-08-26T06:22:17.3500446Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet","Remove-AzDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Remove-AzDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Remove-AzDeployment'."
2020-08-26T06:22:17.3501629Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet","Remove-AzTenantDeployment","0","1050","The parameter set 'RemoveByDeploymentName' for cmdlet 'Remove-AzTenantDeployment' has been removed.","Add parameter set 'RemoveByDeploymentName' back to cmdlet 'Remove-AzTenantDeployment'."
2020-08-26T06:22:17.3528088Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet","Remove-AzTenantDeployment","0","1050","The parameter set 'RemoveByDeploymentId' for cmdlet 'Remove-AzTenantDeployment' has been removed.","Add parameter set 'RemoveByDeploymentId' back to cmdlet 'Remove-AzTenantDeployment'."
2020-08-26T06:22:17.3534550Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet","Remove-AzTenantDeployment","0","1050","The parameter set 'RemoveByInputObject' for cmdlet 'Remove-AzTenantDeployment' has been removed.","Add parameter set 'RemoveByInputObject' back to cmdlet 'Remove-AzTenantDeployment'."
2020-08-26T06:22:17.3535898Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet","Remove-AzTenantDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Remove-AzTenantDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Remove-AzTenantDeployment'."
2020-08-26T06:22:17.3537151Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureManagementGroupDeploymentTemplateCmdlet","Save-AzManagementGroupDeploymentTemplate","0","1050","The parameter set 'SaveByDeploymentName' for cmdlet 'Save-AzManagementGroupDeploymentTemplate' has been removed.","Add parameter set 'SaveByDeploymentName' back to cmdlet 'Save-AzManagementGroupDeploymentTemplate'."
2020-08-26T06:22:17.3538584Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureManagementGroupDeploymentTemplateCmdlet","Save-AzManagementGroupDeploymentTemplate","0","1050","The parameter set 'SaveByDeploymentObject' for cmdlet 'Save-AzManagementGroupDeploymentTemplate' has been removed.","Add parameter set 'SaveByDeploymentObject' back to cmdlet 'Save-AzManagementGroupDeploymentTemplate'."
2020-08-26T06:22:17.3540288Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureManagementGroupDeploymentTemplateCmdlet","Save-AzManagementGroupDeploymentTemplate","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Save-AzManagementGroupDeploymentTemplate' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Save-AzManagementGroupDeploymentTemplate'."
2020-08-26T06:22:17.3544516Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureSubscriptionDeploymentTemplateCmdlet","Save-AzDeploymentTemplate","0","1050","The parameter set 'SaveByDeploymentName' for cmdlet 'Save-AzDeploymentTemplate' has been removed.","Add parameter set 'SaveByDeploymentName' back to cmdlet 'Save-AzDeploymentTemplate'."
2020-08-26T06:22:17.3547226Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureSubscriptionDeploymentTemplateCmdlet","Save-AzDeploymentTemplate","0","1050","The parameter set 'SaveByDeploymentObject' for cmdlet 'Save-AzDeploymentTemplate' has been removed.","Add parameter set 'SaveByDeploymentObject' back to cmdlet 'Save-AzDeploymentTemplate'."
2020-08-26T06:22:17.3549251Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureSubscriptionDeploymentTemplateCmdlet","Save-AzDeploymentTemplate","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Save-AzDeploymentTemplate' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Save-AzDeploymentTemplate'."
2020-08-26T06:22:17.3551389Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureTenantDeploymentTemplateCmdlet","Save-AzTenantDeploymentTemplate","0","1050","The parameter set 'SaveByDeploymentName' for cmdlet 'Save-AzTenantDeploymentTemplate' has been removed.","Add parameter set 'SaveByDeploymentName' back to cmdlet 'Save-AzTenantDeploymentTemplate'."
2020-08-26T06:22:17.3553638Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureTenantDeploymentTemplateCmdlet","Save-AzTenantDeploymentTemplate","0","1050","The parameter set 'SaveByDeploymentObject' for cmdlet 'Save-AzTenantDeploymentTemplate' has been removed.","Add parameter set 'SaveByDeploymentObject' back to cmdlet 'Save-AzTenantDeploymentTemplate'."
2020-08-26T06:22:17.3555817Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureTenantDeploymentTemplateCmdlet","Save-AzTenantDeploymentTemplate","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Save-AzTenantDeploymentTemplate' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Save-AzTenantDeploymentTemplate'."
2020-08-26T06:22:17.3557877Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet","Stop-AzManagementGroupDeployment","0","1050","The parameter set 'StopByDeploymentName' for cmdlet 'Stop-AzManagementGroupDeployment' has been removed.","Add parameter set 'StopByDeploymentName' back to cmdlet 'Stop-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3559434Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet","Stop-AzManagementGroupDeployment","0","1050","The parameter set 'StopByDeploymentId' for cmdlet 'Stop-AzManagementGroupDeployment' has been removed.","Add parameter set 'StopByDeploymentId' back to cmdlet 'Stop-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3561122Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet","Stop-AzManagementGroupDeployment","0","1050","The parameter set 'StopByInputObject' for cmdlet 'Stop-AzManagementGroupDeployment' has been removed.","Add parameter set 'StopByInputObject' back to cmdlet 'Stop-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3562727Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet","Stop-AzManagementGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Stop-AzManagementGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Stop-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3564197Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet","Stop-AzDeployment","0","1050","The parameter set 'StopByDeploymentName' for cmdlet 'Stop-AzDeployment' has been removed.","Add parameter set 'StopByDeploymentName' back to cmdlet 'Stop-AzDeployment'."
2020-08-26T06:22:17.3566488Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet","Stop-AzDeployment","0","1050","The parameter set 'StopByDeploymentId' for cmdlet 'Stop-AzDeployment' has been removed.","Add parameter set 'StopByDeploymentId' back to cmdlet 'Stop-AzDeployment'."
2020-08-26T06:22:17.3568281Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet","Stop-AzDeployment","0","1050","The parameter set 'StopByInputObject' for cmdlet 'Stop-AzDeployment' has been removed.","Add parameter set 'StopByInputObject' back to cmdlet 'Stop-AzDeployment'."
2020-08-26T06:22:17.3570373Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet","Stop-AzDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Stop-AzDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Stop-AzDeployment'."
2020-08-26T06:22:17.3572265Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet","Stop-AzTenantDeployment","0","1050","The parameter set 'StopByDeploymentName' for cmdlet 'Stop-AzTenantDeployment' has been removed.","Add parameter set 'StopByDeploymentName' back to cmdlet 'Stop-AzTenantDeployment'."
2020-08-26T06:22:17.3573463Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet","Stop-AzTenantDeployment","0","1050","The parameter set 'StopByDeploymentId' for cmdlet 'Stop-AzTenantDeployment' has been removed.","Add parameter set 'StopByDeploymentId' back to cmdlet 'Stop-AzTenantDeployment'."
2020-08-26T06:22:17.3574668Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet","Stop-AzTenantDeployment","0","1050","The parameter set 'StopByInputObject' for cmdlet 'Stop-AzTenantDeployment' has been removed.","Add parameter set 'StopByInputObject' back to cmdlet 'Stop-AzTenantDeployment'."
2020-08-26T06:22:17.3575839Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet","Stop-AzTenantDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Stop-AzTenantDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Stop-AzTenantDeployment'."
2020-08-26T06:22:17.3577139Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3578467Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3580179Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3582163Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3584130Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3586122Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3587950Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3592150Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3593873Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3595271Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3596536Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3597968Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3599450Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Test-AzManagementGroupDeployment'."
2020-08-26T06:22:17.3600769Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3602013Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3603628Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3605041Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3607791Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3610020Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3611363Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3612641Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3613867Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3615049Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3616239Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3617431Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3618725Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Test-AzDeployment'."
2020-08-26T06:22:17.3620109Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3621373Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3623681Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3625252Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3627241Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3628647Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3630569Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3631794Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3633277Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3634546Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3635763Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3636977Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3638328Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Test-AzTenantDeployment'."
2020-08-26T06:22:17.3639623Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentCmdlet","Get-AzResourceGroupDeployment","0","1050","The parameter set 'GetByResourceGroupDeploymentName' for cmdlet 'Get-AzResourceGroupDeployment' has been removed.","Add parameter set 'GetByResourceGroupDeploymentName' back to cmdlet 'Get-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3640901Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentCmdlet","Get-AzResourceGroupDeployment","0","1050","The parameter set 'GetByResourceGroupDeploymentId' for cmdlet 'Get-AzResourceGroupDeployment' has been removed.","Add parameter set 'GetByResourceGroupDeploymentId' back to cmdlet 'Get-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3642239Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentCmdlet","Get-AzResourceGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzResourceGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3643538Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentOperationCmdlet","Get-AzResourceGroupDeploymentOperation","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzResourceGroupDeploymentOperation' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzResourceGroupDeploymentOperation'."
2020-08-26T06:22:17.3645075Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3647611Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3649871Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3651318Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3662668Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3664247Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3666491Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3668704Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3671179Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3672769Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3674379Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3675893Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3677592Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'."
2020-08-26T06:22:17.3678994Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3680253Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3681543Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3682971Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3684284Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3686477Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3687943Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3690003Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3691519Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3693267Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3694576Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3695907Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3697171Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'New-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3698435Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureResourceGroupDeploymentCmdlet","Remove-AzResourceGroupDeployment","0","1050","The parameter set 'RemoveByResourceGroupName' for cmdlet 'Remove-AzResourceGroupDeployment' has been removed.","Add parameter set 'RemoveByResourceGroupName' back to cmdlet 'Remove-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3699819Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureResourceGroupDeploymentCmdlet","Remove-AzResourceGroupDeployment","0","1050","The parameter set 'RemoveByResourceGroupDeploymentId' for cmdlet 'Remove-AzResourceGroupDeployment' has been removed.","Add parameter set 'RemoveByResourceGroupDeploymentId' back to cmdlet 'Remove-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3701746Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureResourceGroupDeploymentCmdlet","Remove-AzResourceGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Remove-AzResourceGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Remove-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3703720Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureResourceGroupDeploymentTemplateCmdlet","Save-AzResourceGroupDeploymentTemplate","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Save-AzResourceGroupDeploymentTemplate' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Save-AzResourceGroupDeploymentTemplate'."
2020-08-26T06:22:17.3726075Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureResourceGroupDeploymentCmdlet","Stop-AzResourceGroupDeployment","0","1050","The parameter set 'StopByResourceGroupDeploymentName' for cmdlet 'Stop-AzResourceGroupDeployment' has been removed.","Add parameter set 'StopByResourceGroupDeploymentName' back to cmdlet 'Stop-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3728416Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureResourceGroupDeploymentCmdlet","Stop-AzResourceGroupDeployment","0","1050","The parameter set 'StopByResourceGroupDeploymentId' for cmdlet 'Stop-AzResourceGroupDeployment' has been removed.","Add parameter set 'StopByResourceGroupDeploymentId' back to cmdlet 'Stop-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3730617Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureResourceGroupDeploymentCmdlet","Stop-AzResourceGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Stop-AzResourceGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Stop-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3736923Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Test-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3738523Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Test-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3740270Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Test-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3741946Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Test-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3743729Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Test-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3745972Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Test-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3747861Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Test-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3750225Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Test-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3751691Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Test-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3753729Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Test-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3755201Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Test-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3756861Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Test-AzResourceGroupDeployment'."
2020-08-26T06:22:17.3758408Z   "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Test-AzResourceGroupDeployment'."

@Xynoclafe
Copy link
Copy Markdown
Contributor Author

I think I've already regenerated the help files. But yes, I will verify the case with parameter sets and suppress them accordingly

@msJinLei msJinLei merged commit ddaee47 into Azure:Az.Resources-preview Sep 3, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants