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