Modules/Public/New-S2DReport.ps1
|
function New-S2DReport { <# .SYNOPSIS Generates HTML, Word, PDF, or Excel reports from S2D cluster data. .DESCRIPTION Phase 3 — Not yet implemented. Will accept S2DClusterData from the pipeline (output of Invoke-S2DCartographer -PassThru) and render publication-quality reports with embedded diagrams. #> [CmdletBinding()] param( [Parameter(ValueFromPipeline)] [object] $InputObject, [Parameter(Mandatory)] [ValidateSet('Html', 'Word', 'Pdf', 'Excel', 'All')] [string[]] $Format, [Parameter()] [string] $OutputPath, [Parameter()] [string] $OutputDirectory, [Parameter()] [string] $Author, [Parameter()] [string] $Company ) throw "New-S2DReport is not implemented yet. This is a Phase 3 deliverable. See the project plan for the roadmap." } |