Public/New/New-HaloSite.ps1
Function New-HaloSite { <# .SYNOPSIS Creates a site via the Halo API. .DESCRIPTION Function to send a site creation request to the Halo API .OUTPUTS Outputs an object containing the response from the web request. #> [CmdletBinding( SupportsShouldProcess = $True )] [OutputType([Object])] Param ( # Object containing properties and values used to create a new site. [Parameter( Mandatory = $True )] [Object]$Site ) Invoke-HaloPreFlightCheck try { if ($PSCmdlet.ShouldProcess("Site '$($Site.name)'", 'Create')) { New-HaloPOSTRequest -Object $Site -Endpoint 'site' } } catch { New-HaloError -ErrorRecord $_ } } |