Public/Get-AnyStackVmStorageLatency.ps1
|
function Get-AnyStackVmStorageLatency { <# .SYNOPSIS Get-AnyStackVmStorageLatency - A specialized AnyStack Enterprise tool. .DESCRIPTION Autogenerated cmdlet for VCF.PerformanceProfiler. #> [CmdletBinding(SupportsShouldProcess=$true)] param( [Parameter(Mandatory=$true)] [string]$Server ) process { $ErrorActionPreference = 'Stop' Write-Host "[ANYSTACK] Running Get-AnyStackVmStorageLatency on server $Server" -ForegroundColor Cyan } } |