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