Resources/ConfigurationInterfaces.ps1
function New-ITGlueConfigurationInterfaces { Param ( [Nullable[Int64]]$conf_id = $null, [Parameter(Mandatory = $true)] $data ) $resource_uri = '/configuration_interfaces/' if ($conf_id) { $resource_uri = ('/configurations/{0}/relationships/configuration_interfaces' -f $conf_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 Get-ITGlueConfigurationInterfaces { [CmdletBinding(DefaultParametersetName = 'index')] Param ( [Parameter(ParameterSetName = 'index', Mandatory = $true)] [Parameter(ParameterSetName = 'show')] [Nullable[Int64]]$conf_id = $null, [Parameter(ParameterSetName = 'index')] [Nullable[Int64]]$filter_id = $null, [Parameter(ParameterSetName = 'index')] [String]$filter_ip_address = $null, [Parameter(ParameterSetName = 'index')] [ValidateSet('created_at', 'updated_at', ` '-created_at', '-updated_at')] [String]$sort = '', [Parameter(ParameterSetName = 'index')] [Nullable[Int64]]$page_number = $null, [Parameter(ParameterSetName = 'index')] [Nullable[int]]$page_size = $null, [Parameter(ParameterSetName = 'show', Mandatory = $true)] [Nullable[Int64]]$id ) $resource_uri = ('/configurations/{0}/relationships/configuration_interfaces/' -f $conf_id) if ($PsCmdlet.ParameterSetName -eq 'show') { if ($null -eq $conf_id) { $resource_uri = ('/configuration_interfaces/{0}' -f $id) } else { $resource_uri = ('/configurations/{0}/relationships/configuration_interfaces/{1}' -f $conf_id, $id) } } $body = @{} if ($PSCmdlet.ParameterSetName -eq 'index') { if ($filter_id) { $body += @{'filter[id]' = $filter_id} } if ($filter_ip_address) { $body += @{'filter[ip_address]' = $filter_ip_address } } if ($sort) { $body += @{'sort' = $sort} } if ($page_number) { $body += @{'page[number]' = $page_number} } if ($page_size) { $body += @{'page[size]' = $page_size} } } 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 'GET' -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-ITGlueConfigurationInterfaces { [CmdletBinding(DefaultParametersetName = 'update')] Param ( [Parameter(ParameterSetName = 'update')] [Nullable[Int64]]$id, [Parameter(ParameterSetName = 'update')] [Nullable[Int64]]$conf_id = $null, [Parameter(ParameterSetName = 'bulk_update')] [Nullable[Int64]]$filter_id = $null, [Parameter(ParameterSetName = 'update')] [Parameter(ParameterSetName = 'bulk_update')] [Parameter(Mandatory = $true)] $data ) $resource_uri = ('/configuration_interfaces/{0}' -f $id) if ($conf_id) { $resource_uri = ('/configurations/{0}/relationships/configuration_interfaces/{1}' -f $conf_id, $id) } $body = @{} if ($PSCmdlet.ParameterSetName -eq 'bulk_delete') { if ($filter_id) { $body += @{'filter[id]' = $filter_id} } } $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 } |