Public/Set/Set-HaloTeam.ps1
Function Set-HaloTeam { <# .SYNOPSIS Updates one or more teams via the Halo API. .DESCRIPTION Function to send a team update request to the Halo API .OUTPUTS Outputs an object containing the response from the web request. #> [CmdletBinding( SupportsShouldProcess = $True )] [OutputType([Object[]])] Param ( # Object or array of objects containing properties and values used to update one or more existing teams. [Parameter( Mandatory = $True, ValueFromPipeline )] [Object[]]$Team, # Skip validation checks. [Parameter()] [Switch]$SkipValidation ) Invoke-HaloPreFlightCheck try { $ObjectToUpdate = $Team | ForEach-Object { if ($null -eq $_.id) { throw 'Team ID is required.' } $HaloTeamParams = @{ TeamId = $_.id } if (-not $SkipValidation) { $TeamExists = Get-HaloTeam @HaloTeamParams if ($TeamExists) { Return $True } else { Return $False } } else { Write-Verbose 'Skipping validation checks.' Return $True } } if ($False -notin $ObjectToUpdate) { if ($PSCmdlet.ShouldProcess($Team -is [Array] ? 'Teams' : 'Team', 'Update')) { New-HaloPOSTRequest -Object $Team -Endpoint 'team' } } else { Throw 'One or more teams was not found in Halo to update.' } } catch { New-HaloError -ErrorRecord $_ } } |