public/Get-Csr.ps1
Function Get-Csr { <# .SYNOPSIS .PARAMETER name .PARAMETER dstSubnet .PARAMETER aclOrder .EXAMPLE .EXAMPLE .EXAMPLE .NOTES Requires F5-LTM modules from github #> [cmdletBinding()] param( [Alias("Common Name")] [Parameter(Mandatory=$true)] [string[]]$commonName='' ) begin { #Test that the F5 session is in a valid format Test-F5Session($F5Session) if( $F5Session.WebSession.Headers.'Token-Expiration' -lt (date) ){ Write-Warning "F5 Session Token is Expired. Please re-connect to the F5 device." break } } process { foreach ($name in $commonName) { $JSONBody = @" { "command":"run", "utilCmdArgs":"-c 'tmsh list sys crypto csr $name'" } "@ } $uri = $F5Session.BaseURL.Replace('/ltm/','/util/bash') $response = Invoke-RestMethodOverride -Method Post -Uri $URI -Body $JSONBody -ContentType 'application/json' -WebSession $F5Session.WebSession $response } } |