mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-16 19:25:47 +00:00
86 lines
1.7 KiB
PowerShell
86 lines
1.7 KiB
PowerShell
|
|
<#
|
||
|
|
.SYNOPSIS
|
||
|
|
Updates a department
|
||
|
|
|
||
|
|
.DESCRIPTION
|
||
|
|
Updates the department on Snipe-It system
|
||
|
|
|
||
|
|
.PARAMETER id
|
||
|
|
Id number of Department
|
||
|
|
|
||
|
|
.PARAMETER name
|
||
|
|
Department Name
|
||
|
|
|
||
|
|
.PARAMETER company_id
|
||
|
|
ID number of company
|
||
|
|
|
||
|
|
.PARAMETER location_id
|
||
|
|
ID number of location
|
||
|
|
|
||
|
|
.PARAMETER manager_id
|
||
|
|
ID number of manager
|
||
|
|
|
||
|
|
.PARAMETER url
|
||
|
|
URL of Snipeit system, can be set using Set-SnipeitInfo command
|
||
|
|
|
||
|
|
.PARAMETER apiKey
|
||
|
|
Users API Key for Snipeit, can be set using Set-SnipeitInfo command
|
||
|
|
|
||
|
|
.EXAMPLE
|
||
|
|
Set-SnipeitDepartment -id 4 -manager_id 3
|
||
|
|
|
||
|
|
#>
|
||
|
|
|
||
|
|
function Set-SnipeitDepartment() {
|
||
|
|
[CmdletBinding(
|
||
|
|
SupportsShouldProcess = $true,
|
||
|
|
ConfirmImpact = "Low"
|
||
|
|
)]
|
||
|
|
|
||
|
|
Param(
|
||
|
|
[parameter(mandatory = $true,ValueFromPipelineByPropertyName)]
|
||
|
|
[int[]]$id,
|
||
|
|
|
||
|
|
[string]$name,
|
||
|
|
|
||
|
|
[int]$company_id,
|
||
|
|
|
||
|
|
[int]$location_id,
|
||
|
|
|
||
|
|
[int]$manager_id,
|
||
|
|
|
||
|
|
[string]$notes,
|
||
|
|
|
||
|
|
[parameter(mandatory = $true)]
|
||
|
|
[string]$url,
|
||
|
|
|
||
|
|
[parameter(mandatory = $true)]
|
||
|
|
[string]$apiKey
|
||
|
|
)
|
||
|
|
|
||
|
|
begin {
|
||
|
|
|
||
|
|
$Values = . Get-ParameterValue -Parameters $MyInvocation.MyCommand.Parameters -BoundParameters $PSBoundParameters
|
||
|
|
|
||
|
|
$Body = $Values | ConvertTo-Json;
|
||
|
|
}
|
||
|
|
|
||
|
|
process {
|
||
|
|
foreach ($department_id in $id) {
|
||
|
|
$Parameters = @{
|
||
|
|
Uri = "$url/api/v1/departments/$department_id"
|
||
|
|
Method = 'Put'
|
||
|
|
Body = $Body
|
||
|
|
Token = $apiKey
|
||
|
|
}
|
||
|
|
|
||
|
|
If ($PSCmdlet.ShouldProcess("ShouldProcess?")) {
|
||
|
|
$result = Invoke-SnipeitMethod @Parameters
|
||
|
|
}
|
||
|
|
|
||
|
|
$result
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|