Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ExcludedResources: Document newly added parameter added on #3262 #3265

Merged
merged 1 commit into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Modules/Microsoft365DSC/Modules/M365DSCReport.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,9 @@ Array that contains the list of configuration components for the destination.
.Parameter ExcludedProperties
Array that contains the list of parameters to exclude.

.Parameter ExcludedResources
Array that contains the list of resources to exclude.

.Parameter IsBlueprintAssessment
Specifies whether or not we are currently comparing a configuration to a Blueprint.

Expand Down Expand Up @@ -1097,6 +1100,9 @@ An array with difference, already compiled from another source.
.Parameter ExcludedProperties
Array that contains the list of parameters to exclude.

.Parameter ExcludedResources
Array that contains the list of resources to exclude.

.Example
New-M365DSCDeltaReport -Source 'C:\DSC\Source.ps1' -Destination 'C:\DSC\Destination.ps1' -OutputPath 'C:\Dsc\DeltaReport.html'

Expand Down
5 changes: 4 additions & 1 deletion Modules/Microsoft365DSC/Modules/M365DSCUtil.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -2527,7 +2527,10 @@ Specifies the path of the PFX file which is used for authentication.
Specifies that file that contains a custom header for the report.

.Parameter ExcludedProperties
Specifies the name of parameters that should not be assessed as part of the report. The names will speficied will apply to all resources where they are encountered.
Specifies the name of parameters that should not be assessed as part of the report. The names speficied will apply to all resources where they are encountered.

.Parameter ExcludedResources
Specifies the name of resources that should not be assessed as part of the report.

.Example
Assert-M365DSCBlueprint -BluePrintUrl 'C:\DS\blueprint.m365' -OutputReportPath 'C:\DSC\BlueprintReport.html'
Expand Down