Public/cmdb/router/static.ps1
# # Copyright 2019, Alexis La Goutte <alexis dot lagoutte at gmail dot com> # Copyright 2019, Benjamin Perrier <ben dot perrier at outlook dot com> # # SPDX-License-Identifier: Apache-2.0 # function Get-FGTRouterStatic { <# .SYNOPSIS Get list of all "static routes" .DESCRIPTION Get list of all "static routes" (destination network, gateway, port, distance, weight...) .EXAMPLE Get-FGTRouterStatic Get list of all static route object .EXAMPLE Get-FGTRouterStatic -skip Get list of all static route object (but only relevant attributes) .EXAMPLE Get-FGTRouterStatic -vdom vdomX Get list of all static route object on vdomX #> Param( [Parameter(Mandatory = $false)] [switch]$skip, [Parameter(Mandatory = $false)] [String[]]$vdom, [Parameter(Mandatory = $false)] [psobject]$connection=$DefaultFGTConnection ) Begin { } Process { $invokeParams = @{ } if ( $PsBoundParameters.ContainsKey('skip') ) { $invokeParams.add( 'skip', $skip ) } if ( $PsBoundParameters.ContainsKey('vdom') ) { $invokeParams.add( 'vdom', $vdom ) } $response = Invoke-FGTRestMethod -uri 'api/v2/cmdb/router/static' -method 'GET' -connection $connection @invokeParams $response.results } End { } } |