Get Proxy Settings of Prisma Cloud Compute
GET/api/v32.07/settings/proxy
x-prisma-cloud-target-env: {"permission":"systemOperations"}
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
- 200
- default
ProxySettings are the http proxy settings
- application/json
- Schema
- Example (from schema)
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.
{
"ca": "string",
"httpProxy": "string",
"noProxy": "string",
"password": {
"encrypted": "string",
"plain": "string"
},
"user": "string"
}
Loading...