Modules/Public/Get-S2DStoragePoolInfo.ps1
|
function Get-S2DStoragePoolInfo { <# .SYNOPSIS Returns storage pool configuration, allocation, and overcommit status. .DESCRIPTION Phase 2 — Not yet implemented. Will collect pool FriendlyName, HealthStatus, TotalSize, AllocatedSize, RemainingSize, ProvisionedSize, storage tiers, resiliency settings, and overcommit detection for thin-provisioned pools. #> [CmdletBinding()] param() throw "Get-S2DStoragePoolInfo is not implemented yet. This is a Phase 2 deliverable. See the project plan for the roadmap." } |