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