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
    )
    Invoke-HaloPreFlightCheck
    try {
        $ObjectToUpdate = $Team | ForEach-Object {
            if ($null -eq $_.id) {
                throw 'Team ID is required.'
            }
            $HaloTeamParams = @{
                TeamId = $_.id
            }
            $TeamExists = Get-HaloTeam @HaloTeamParams
            if ($TeamExists) {
                Return $True
            } else {
                Return $False
            }
        }
        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 $_
    }
}