From f175d339515519aba868087e318b56ab5d3e1763 Mon Sep 17 00:00:00 2001 From: Felix Date: Mon, 25 Jun 2018 16:06:35 +0200 Subject: [PATCH 1/3] Added Get-CustomField --- SnipeitPS/Public/Get-CustomField.ps1 | 35 +++++++++++++++++++++++++++ SnipeitPS/SnipeItPS.psd1 | Bin 9124 -> 9180 bytes 2 files changed, 35 insertions(+) create mode 100644 SnipeitPS/Public/Get-CustomField.ps1 diff --git a/SnipeitPS/Public/Get-CustomField.ps1 b/SnipeitPS/Public/Get-CustomField.ps1 new file mode 100644 index 0000000..8a26143 --- /dev/null +++ b/SnipeitPS/Public/Get-CustomField.ps1 @@ -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 +} diff --git a/SnipeitPS/SnipeItPS.psd1 b/SnipeitPS/SnipeItPS.psd1 index 7a5e4a3b704d0a42a24a704e1f97a779ff1aa97c..7bd75c476e2b723ba8e9962fc6c9353c16e63930 100644 GIT binary patch delta 42 xcmZ4De#d=7m58V_Ln%WsLkUAZLoS0GLncEiLk>gAWJ6Ku$p*q4o2x{$_yGp^3k?7O delta 12 TcmccPzQlb)mB{8zB3k?aCWHk4 From b61f89fee2c18ce22321e41c0cdc5753872becf7 Mon Sep 17 00:00:00 2001 From: Felix Date: Mon, 25 Jun 2018 16:06:58 +0200 Subject: [PATCH 2/3] Added Get-FieldSet --- SnipeitPS/Public/Get-Fieldset.ps1 | 37 ++++++++++++++++++++++++++++++ SnipeitPS/SnipeItPS.psd1 | Bin 9180 -> 9230 bytes 2 files changed, 37 insertions(+) create mode 100644 SnipeitPS/Public/Get-Fieldset.ps1 diff --git a/SnipeitPS/Public/Get-Fieldset.ps1 b/SnipeitPS/Public/Get-Fieldset.ps1 new file mode 100644 index 0000000..9e4058d --- /dev/null +++ b/SnipeitPS/Public/Get-Fieldset.ps1 @@ -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 +} diff --git a/SnipeitPS/SnipeItPS.psd1 b/SnipeitPS/SnipeItPS.psd1 index 7bd75c476e2b723ba8e9962fc6c9353c16e63930..f100983f6a8f0b3e18708f0b266fd55049d02fd2 100644 GIT binary patch delta 34 qcmccP-siF5l<;H&VGd3=hD?T3h8%{J$&Esalg|lpY`!GSB>(`* Date: Mon, 25 Jun 2018 16:07:47 +0200 Subject: [PATCH 3/3] Added New-CustomField --- SnipeitPS/Public/New-CustomField.ps1 | 72 +++++++++++++++++++++++++++ SnipeitPS/SnipeItPS.psd1 | Bin 9230 -> 9286 bytes 2 files changed, 72 insertions(+) create mode 100644 SnipeitPS/Public/New-CustomField.ps1 diff --git a/SnipeitPS/Public/New-CustomField.ps1 b/SnipeitPS/Public/New-CustomField.ps1 new file mode 100644 index 0000000..2fe0482 --- /dev/null +++ b/SnipeitPS/Public/New-CustomField.ps1 @@ -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 +} diff --git a/SnipeitPS/SnipeItPS.psd1 b/SnipeitPS/SnipeItPS.psd1 index f100983f6a8f0b3e18708f0b266fd55049d02fd2..91d74293a1d3393927f6b733b888d77f9cfa12ea 100644 GIT binary patch delta 192 zcmeD4IOefok7E2S=n=B+|G%^?U>?UE0$$cU!Kt9*xLt;u`bJmC}0p++R?-9|NEF}sSV-95~ zo*XDH54Q6SP~8I&tI4~B^}u{NF+GU6Vn&lg#31&`2^&nV6XKd&C29e5qtfOF;%Php Dt9(Di