mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-14 02:12:29 +00:00
commit
196952bddc
4 changed files with 144 additions and 0 deletions
35
SnipeitPS/Public/Get-CustomField.ps1
Normal file
35
SnipeitPS/Public/Get-CustomField.ps1
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
# Returns a list of all Snipe-IT custom fields
|
||||||
|
|
||||||
|
.PARAMETER url
|
||||||
|
URL of Snipeit system, can be set using Set-Info command
|
||||||
|
|
||||||
|
.PARAMETER apiKey
|
||||||
|
Users API Key for Snipeit, can be set using Set-Info command
|
||||||
|
|
||||||
|
.EXAMPLE
|
||||||
|
Get-Field -url "https://assets.example.com" -token "token..."
|
||||||
|
|
||||||
|
#>
|
||||||
|
|
||||||
|
function Get-CustomField()
|
||||||
|
{
|
||||||
|
Param(
|
||||||
|
[parameter(mandatory = $true)]
|
||||||
|
[string]$url,
|
||||||
|
|
||||||
|
[parameter(mandatory = $true)]
|
||||||
|
[string]$apiKey
|
||||||
|
)
|
||||||
|
|
||||||
|
$Parameters = @{
|
||||||
|
Uri = "$url/api/v1/fields"
|
||||||
|
Method = 'Get'
|
||||||
|
Token = $apiKey
|
||||||
|
}
|
||||||
|
|
||||||
|
$result = Invoke-SnipeitMethod @Parameters
|
||||||
|
|
||||||
|
$result
|
||||||
|
}
|
||||||
37
SnipeitPS/Public/Get-Fieldset.ps1
Normal file
37
SnipeitPS/Public/Get-Fieldset.ps1
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
# Gets a list of Snipe-it Fieldsets
|
||||||
|
|
||||||
|
.PARAMETER url
|
||||||
|
URL of Snipeit system, can be set using Set-Info command
|
||||||
|
|
||||||
|
.PARAMETER apiKey
|
||||||
|
Users API Key for Snipeit, can be set using Set-Info command
|
||||||
|
|
||||||
|
.EXAMPLE
|
||||||
|
Get-Fieldset -url "https://assets.example.com" -token "token..."
|
||||||
|
|
||||||
|
.EXAMPLE
|
||||||
|
Get-Fieldset -url "https://assets.example.com" -token "token..." | Where-Object {$_.name -eq "Windows" }
|
||||||
|
|
||||||
|
#>
|
||||||
|
|
||||||
|
function Get-Fieldset() {
|
||||||
|
Param(
|
||||||
|
[parameter(mandatory = $true)]
|
||||||
|
[string]$url,
|
||||||
|
|
||||||
|
[parameter(mandatory = $true)]
|
||||||
|
[string]$apiKey
|
||||||
|
)
|
||||||
|
|
||||||
|
$Parameters = @{
|
||||||
|
Uri = "$url/api/v1/fieldsets"
|
||||||
|
Method = 'Get'
|
||||||
|
Token = $apiKey
|
||||||
|
}
|
||||||
|
|
||||||
|
$result = Invoke-SnipeitMethod @Parameters
|
||||||
|
|
||||||
|
$result
|
||||||
|
}
|
||||||
72
SnipeitPS/Public/New-CustomField.ps1
Normal file
72
SnipeitPS/Public/New-CustomField.ps1
Normal file
|
|
@ -0,0 +1,72 @@
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Add a new Custom Field to Snipe-it asset system
|
||||||
|
|
||||||
|
.DESCRIPTION
|
||||||
|
Add a new Custom Field to Snipe-it asset system
|
||||||
|
|
||||||
|
.PARAMETER Name
|
||||||
|
Name of the Custom Field
|
||||||
|
|
||||||
|
.PARAMETER url
|
||||||
|
URL of Snipeit system, can be set using Set-Info command
|
||||||
|
|
||||||
|
.PARAMETER apiKey
|
||||||
|
Users API Key for Snipeit, can be set using Set-Info command
|
||||||
|
|
||||||
|
.EXAMPLE
|
||||||
|
New-Field -Name "AntivirusInstalled" -Format "BOOLEAN" -HelpText "Is AntiVirus installed on Asset"
|
||||||
|
#>
|
||||||
|
|
||||||
|
function New-CustomField()
|
||||||
|
{
|
||||||
|
[CmdletBinding(
|
||||||
|
SupportsShouldProcess = $true,
|
||||||
|
ConfirmImpact = "Low"
|
||||||
|
)]
|
||||||
|
|
||||||
|
Param(
|
||||||
|
[parameter(mandatory = $true)]
|
||||||
|
[string]$Name,
|
||||||
|
|
||||||
|
[string]$HelpText,
|
||||||
|
|
||||||
|
[string]$Element = "text",
|
||||||
|
|
||||||
|
[string]$Format = "ANY",
|
||||||
|
|
||||||
|
[string]$CustomFormat,
|
||||||
|
|
||||||
|
[parameter(mandatory = $true)]
|
||||||
|
[string]$url,
|
||||||
|
|
||||||
|
[parameter(mandatory = $true)]
|
||||||
|
[string]$apiKey
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
$Values = @{
|
||||||
|
"name" = $Name
|
||||||
|
"help_text" = $HelpText
|
||||||
|
"element" = $Element
|
||||||
|
"format" = $Format
|
||||||
|
"custom_format" = $CustomFormat
|
||||||
|
}
|
||||||
|
|
||||||
|
#Convert Values to JSON format
|
||||||
|
$Body = $Values | ConvertTo-Json;
|
||||||
|
|
||||||
|
$Parameters = @{
|
||||||
|
Uri = "$url/api/v1/fields"
|
||||||
|
Method = 'post'
|
||||||
|
Body = $Body
|
||||||
|
Token = $apiKey
|
||||||
|
}
|
||||||
|
|
||||||
|
If ($PSCmdlet.ShouldProcess("ShouldProcess?"))
|
||||||
|
{
|
||||||
|
$result = Invoke-SnipeitMethod @Parameters
|
||||||
|
}
|
||||||
|
|
||||||
|
$result
|
||||||
|
}
|
||||||
Binary file not shown.
Loading…
Add table
Reference in a new issue