mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-13 18:02:30 +00:00
63 lines
1.3 KiB
PowerShell
63 lines
1.3 KiB
PowerShell
function New-AssetMaintenance() {
|
|
[CmdletBinding(
|
|
SupportsShouldProcess = $true,
|
|
ConfirmImpact = "Low"
|
|
)]
|
|
|
|
Param(
|
|
[parameter(mandatory = $true)]
|
|
[int]$asset_id,
|
|
|
|
[parameter(mandatory = $true)]
|
|
[int]$supplier_id,
|
|
|
|
[parameter(mandatory = $true)]
|
|
[string]$asset_maintenance_type,
|
|
|
|
[parameter(mandatory = $true)]
|
|
[string]$title,
|
|
|
|
[parameter(mandatory = $true)]
|
|
[datetime]$start_date,
|
|
|
|
[parameter(mandatory = $false)]
|
|
[datetime]$completion_date,
|
|
|
|
[bool]$is_warranty = $false,
|
|
|
|
[decimal]$cost,
|
|
|
|
[string]$notes,
|
|
|
|
[parameter(mandatory = $true)]
|
|
[string]$url,
|
|
|
|
[parameter(mandatory = $true)]
|
|
[string]$apiKey
|
|
)
|
|
|
|
$Values = . Get-ParameterValue
|
|
|
|
if ($values['start_date']) {
|
|
$values['start_date'] = $values['start_date'].ToString("yyyy-MM-dd")
|
|
}
|
|
|
|
if ($values['completion_date']) {
|
|
$values['completion_date'] = $values['completion_date'].ToString("yyyy-MM-dd")
|
|
}
|
|
|
|
$Body = $Values | ConvertTo-Json;
|
|
|
|
$Parameters = @{
|
|
Uri = "$url/api/v1/maintenances"
|
|
Method = 'Post'
|
|
Body = $Body
|
|
Token = $apiKey
|
|
}
|
|
|
|
If ($PSCmdlet.ShouldProcess("ShouldProcess?")) {
|
|
$result = Invoke-SnipeitMethod @Parameters
|
|
}
|
|
|
|
$result
|
|
}
|