Skip to main content

Get Proxy Settings of Prisma Cloud Compute

GET 

/api/v32.04/settings/proxy

x-prisma-cloud-target-env: {"permission":"systemOperations","saas":true,"self-hosted":true}
x-public: true

Returns the proxy settings for Prisma Cloud Compute containers to access the Internet.

cURL Request

Refer to the following example cURL request:

$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
"https://<CONSOLE>/api/v<VERSION>/settings/proxy"

Responses

ProxySettings are the http proxy settings

Schema
    ca string

    Proxy's CA for Defender to trust. Required when using TLS intercept proxies.

    httpProxy string

    Proxy address.

    noProxy string

    List of addresses for which the proxy should not be used.

    password object

    Secret Stores the plain and encrypted version of a value. The plain version is not stored in a database

    encrypted string

    Specifies an encrypted value of the secret.

    plain string

    Specifies the plain text value of the secret.

    user string

    Username to authenticate with the proxy.

Loading...