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