Resources/RelatedItems.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
function New-ITGlueRelatedItems { [CmdletBinding()] Param ( [Parameter(Mandatory = $true)] [ValidateSet( 'checklists', 'checklist_templates', 'configurations', 'contacts', 'documents', ` 'domains', 'locations', 'passwords', 'ssl_certificates', 'flexible_assets', 'tickets')] [string]$resource_type, [Parameter(Mandatory = $true)] [int64]$resource_id, [Parameter(Mandatory = $true)] $data ) $resource_uri = ('/{0}/{1}/relationships/related_items' -f $resource_type, $resource_id) $body = @{} $body += @{'data'= $data} $body = ConvertTo-Json -InputObject $body -Depth $ITGlue_JSON_Conversion_Depth try { $ITGlue_Headers.Add('x-api-key', (New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList 'N/A', $ITGlue_API_Key).GetNetworkCredential().Password) $rest_output = Invoke-RestMethod -method 'POST' -uri ($ITGlue_Base_URI + $resource_uri) -headers $ITGlue_Headers ` -body $body -ErrorAction Stop -ErrorVariable $web_error } catch { Write-Error $_ } finally { [void] $ITGlue_Headers.Remove('x-api-key') # Quietly clean up scope so the API key doesn't persist } $data = @{} $data = $rest_output return $data } function Set-ITGlueRelatedItems { [CmdletBinding()] Param ( [Parameter(Mandatory = $true)] [ValidateSet( 'checklists', 'checklist_templates', 'configurations', 'contacts', 'documents', ` 'domains', 'locations', 'passwords', 'ssl_certificates', 'flexible_assets', 'tickets')] [string]$resource_type, [Parameter(Mandatory = $true)] [int64]$resource_id, [Parameter(Mandatory = $true)] [int64]$id, [Parameter(Mandatory = $true)] $data ) $resource_uri = ('/{0}/{1}/relationships/related_items/{2}' -f $resource_type, $resource_id, $id) $body = @{} $body += @{'data' = $data} $body = ConvertTo-Json -InputObject $body -Depth $ITGlue_JSON_Conversion_Depth try { $ITGlue_Headers.Add('x-api-key', (New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList 'N/A', $ITGlue_API_Key).GetNetworkCredential().Password) $rest_output = Invoke-RestMethod -method 'PATCH' -uri ($ITGlue_Base_URI + $resource_uri) -headers $ITGlue_Headers ` -body $body -ErrorAction Stop -ErrorVariable $web_error } catch { Write-Error $_ } finally { [void] $ITGlue_Headers.Remove('x-api-key') # Quietly clean up scope so the API key doesn't persist } $data = @{} $data = $rest_output return $data } function Remove-ITGlueRelatedItems { [CmdletBinding()] Param ( [Parameter(Mandatory = $true)] [ValidateSet( 'checklists', 'checklist_templates', 'configurations', 'contacts', 'documents', ` 'domains', 'locations', 'passwords', 'ssl_certificates', 'flexible_assets', 'tickets')] [string]$resource_type, [Parameter(Mandatory = $true)] [int64]$resource_id, [Parameter(Mandatory = $true)] $data ) $resource_uri = ('/{0}/{1}/relationships/related_items' -f $resource_type, $resource_id) $body = @{} $body += @{'data' = $data} $body = ConvertTo-Json -InputObject $body -Depth $ITGlue_JSON_Conversion_Depth try { $ITGlue_Headers.Add('x-api-key', (New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList 'N/A', $ITGlue_API_Key).GetNetworkCredential().Password) $rest_output = Invoke-RestMethod -method 'DELETE' -uri ($ITGlue_Base_URI + $resource_uri) -headers $ITGlue_Headers ` -body $body -ErrorAction Stop -ErrorVariable $web_error } catch { Write-Error $_ } finally { [void] $ITGlue_Headers.Remove('x-api-key') # Quietly clean up scope so the API key doesn't persist } $data = @{} $data = $rest_output return $data } |