Modules/Public/Get-S2DVolumeMap.ps1
|
function Get-S2DVolumeMap { <# .SYNOPSIS Maps all S2D volumes with resiliency type, footprint, and provisioning detail. .DESCRIPTION Phase 2 — Not yet implemented. Will collect VirtualDisk and Volume properties, compute resiliency efficiency, detect thin-overcommit, and identify the infrastructure volume. #> [CmdletBinding()] param( [Parameter()] [string[]] $VolumeName ) throw "Get-S2DVolumeMap is not implemented yet. This is a Phase 2 deliverable. See the project plan for the roadmap." } |