public/Get-VPASDPASettings.ps1

<#
.Synopsis
   GET DPA SETTINGS
   CREATED BY: Vadim Melamed, EMAIL: vmelamed5@gmail.com
.DESCRIPTION
   USE THIS FUNCTION TO RETRIEVE ALL DPA SETTINGS
.PARAMETER token
   HashTable of data containing various pieces of login information (PVWA, LoginToken, HeaderType, etc).
   If -token is not passed, function will use last known hashtable generated by New-VPASToken
.EXAMPLE
   $AllSettings = Get-VPASDPASettings
.OUTPUTS
   If successful:
   {
        "mfaCaching": {
                           "isMfaCachingEnabled": true,
                           "keyExpirationTimeSec": 3600
                       },
        "sshMfaCaching": {
                              "isMfaCachingEnabled": false,
                              "keyExpirationTimeSec": 3600
                          },
        "rdpMfaCaching": {
                              "isMfaCachingEnabled": true,
                              "keyExpirationTimeSec": 60,
                              "clientIpEnforced": true,
                              "tokenUsageCount": 0
                          },
        "rdpTokenMfaCaching": {
                                   "isMfaCachingEnabled": false,
                                   "keyExpirationTimeSec": 3600,
                                   "clientIpEnforced": true,
                                   "tokenUsageCount": 0
                               },
        "adbMfaCaching": {
                              "isMfaCachingEnabled": true,
                              "keyExpirationTimeSec": 7200,
                              "clientIpEnforced": true,
                              "tokenUsageCount": 0
                          },
        "k8sMfaCaching": {
                              "keyExpirationTimeSec": 7200,
                              "clientIpEnforced": true,
                              "tokenUsageCount": 0
                          },
        "sshCommandAudit": {
                                "isCommandParsingForAuditEnabled": true,
                                "shellPromptForAudit": "(.*)[\u003e#\\$]$"
                            },
        "standingAccess": {
                               "standingAccessAvailable": true,
                               "sessionMaxDuration": 120,
                               "sessionIdleTime": 10,
                               "fingerprintValidation": true,
                               "sshStandingAccessAvailable": true,
                               "rdpStandingAccessAvailable": true,
                               "adbStandingAccessAvailable": true
                           },
        "rdpFileTransfer": {
                                "enabled": true
                            },
        "certificateValidation": {
                                      "enabled": false
                                  },
        "rdpKeyboardLayout": {
                                  "layout": "en-us-qwerty"
                              },
        "rdpRecording": {
                             "enabled": true
                         },
        "logonSequence": {
                              "logonSequence": "\\[.*\\@.*~]\\$\u003eexec su - {Username}\nPassword:\u003e{Password}"
                          }
   }
   ---
   $false if failed
#>

function Get-VPASDPASettings{
    [OutputType('System.Collections.Hashtable',[bool])]
    [CmdletBinding()]
    Param(

        [Parameter(Mandatory=$false,ValueFromPipelineByPropertyName=$true,Position=0)]
        [hashtable]$token
    )

    Begin{
        $tokenval,$sessionval,$PVWA,$Header,$ISPSS,$IdentityURL,$EnableTextRecorder,$AuditTimeStamp,$NoSSL,$VaultVersion,$HideWarnings,$AuthenticatedAs,$SubDomain = Get-VPASSession -token $token
        $CommandName = $MyInvocation.MyCommand.Name
        $log = Write-VPASTextRecorder -inputval $CommandName -token $token -LogType COMMAND
    }
    Process{
        Write-Verbose "SUCCESSFULLY PARSED SUBDOMAIN VALUE"
        Write-Verbose "SUCCESSFULLY PARSED TOKEN VALUE"

        try{
            if($SubDomain -eq "N/A"){
                Write-VPASOutput -str "SelfHosted + PriviledgeCloud Standard solutions do not support this API Call, returning false" -type E
                $log = Write-VPASTextRecorder -inputval "SelfHosted + PrivilegeCloud Standard solutions do not support this API Call, returning false" -token $token -LogType MISC
                $log = Write-VPASTextRecorder -inputval $false -token $token -LogType RETURN
                return $false
            }

            write-verbose "MAKING API CALL TO CYBERARK"
            $uri = "https://$SubDomain.dpa.cyberark.cloud/api/settings"
            Write-Verbose "CONSTRUCTING URI: $uri"

            $log = Write-VPASTextRecorder -inputval $uri -token $token -LogType URI
            $log = Write-VPASTextRecorder -inputval "GET" -token $token -LogType METHOD

            if($sessionval){
                $response = Invoke-RestMethod -Headers @{"Authorization"=$Header} -Uri $uri -Method GET -ContentType "application/json" -WebSession $sessionval
            }
            else{
                $response = Invoke-RestMethod -Headers @{"Authorization"=$Header} -Uri $uri -Method GET -ContentType "application/json"
            }
            $log = Write-VPASTextRecorder -inputval $response -token $token -LogType RETURNARRAY
            Write-Verbose "RETURNING JSON OBJECT"
            return $response
        }catch{
            $log = Write-VPASTextRecorder -inputval $_ -token $token -LogType ERROR
            $log = Write-VPASTextRecorder -inputval "REST API COMMAND RETURNED: FALSE" -token $token -LogType MISC
            Write-Verbose "FAILED TO RETRIEVE DPA SETTINGS"
            Write-VPASOutput -str $_ -type E
            return $false
        }
    }
    End{
        $log = Write-VPASTextRecorder -inputval $CommandName -token $token -LogType DIVIDER
    }
}