Public/Get-LMRepositoryLogicModules.ps1
Function Get-LMRepositoryLogicModules { [CmdletBinding()] Param ( [ValidateSet("datasource", "propertyrules", "eventsource", "topologysource", "configsource")] [String]$Type = "datasource", [Int]$CoreVersion = 150 ) #Check if we are logged in and have valid api creds If($global:LMAuth.Valid){ #Build header and uri $ResourcePath = "/setting/logicmodules/listcore" #Initalize vars $QueryParams = "?type=$Type" $Results = @() $Data = @{ coreServer = "v$CoreVersion.core.logicmonitor.com" password = "logicmonitor" username = "anonymouse" } $Data = ($Data | ConvertTo-Json) Try{ $Headers = New-LMHeader -Auth $global:LMAuth -Method "POST" -ResourcePath $ResourcePath -Data $Data $Uri = "https://$($global:LMAuth.Portal).logicmonitor.com/santaba/rest" + $ResourcePath + $QueryParams #Issue request $Response = Invoke-RestMethod -Uri $Uri -Method "POST" -Headers $Headers -Body $Data $Results = $Response.Items } Catch [Exception] { $Exception = $PSItem Switch($PSItem.Exception.GetType().FullName){ {"System.Net.WebException" -or "Microsoft.PowerShell.Commands.HttpResponseException"} { $HttpException = ($Exception.ErrorDetails.Message | ConvertFrom-Json).errorMessage $HttpStatusCode = $Exception.Exception.Response.StatusCode.value__ Write-Error "Failed to execute web request($($HttpStatusCode)): $HttpException" } default { $LMError = $Exception.ToString() Write-Error "Failed to execute web request: $LMError" } } Return } Return (Add-ObjectTypeInfo -InputObject $Results -TypeName "LogicMonitor.RepositoryLogicModules" ) } Else{ Write-Host "Please ensure you are logged in before running any comands, use Connect-LMAccount to login and try again." -ForegroundColor Yellow } } |