Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion openapi-specs/compute/30-03/desc/SCAP/get.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This endpoint will return any SCAP datastreams uploaded to the console. This end
The following is an example curl command that uses basic auth to retrieve any uploaded datastreams configured for SCAP scanning:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
2 changes: 1 addition & 1 deletion openapi-specs/compute/30-03/desc/SCAP/id_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This endpoint will delete any SCAP datastreams uploaded to the console. You can
The following is an example curl command that uses basic auth to delete an uploaded datastreams configured for SCAP scanning:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X DELETE \
Expand Down
2 changes: 1 addition & 1 deletion openapi-specs/compute/30-03/desc/SCAP/post.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This endpoint will allow you to add a SCAP datastream to the console.
The following is an example curl command that uses basic auth to add an uploaded datastreams configured for SCAP scanning:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X POST \
Expand Down
2 changes: 1 addition & 1 deletion openapi-specs/compute/30-03/desc/_ping/get.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Checks if Console is reachable from your network host.
Refer to the following cURL example command that pings Console and prints the HTTP response code:

```bash
$ curl -k \
$ curl \
-s \
-o /dev/null \
-w "%{http_code}\n" \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Shows the progress of an ongoing scan on hosts or containers for vulnerabilities
Refer to the following example cURL command:

```
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Make sure that you download (use the agentless/templates API) and apply the perm
Refer to the following example cURL command:

```
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X POST \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Stops an ongoing scan on hosts or containers for vulnerabilities and compliance.
Refer to the following example cURL command:

```
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X POST \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Add the supported cloud accounts (AWS, Azure, GCP, and OCI) in Prisma Cloud Comp
Refer to the following example cURL command:

```
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X POST \
Expand Down
2 changes: 1 addition & 1 deletion openapi-specs/compute/30-03/desc/alert-profiles/get.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Retrieve a list of all alert profiles created in the system.
The following example curl command uses basic auth to retrieve all alert profiles:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This method has no response data.
The following example curl command deletes an existing alert profile named `PROFILE-NAME`.

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X DELETE \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Retrieve a list of only the names of all alert profiles created in the system.
The following example curl command uses basic auth to retrieve all alert profiles' names:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
2 changes: 1 addition & 1 deletion openapi-specs/compute/30-03/desc/alert-profiles/post.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Update an existing alert profile created in the system.
The following example curl command uses basic auth to add a Jira Alert profile:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X POST \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Sends a test alert to verify successful configuration of the alert profile setti
The following example curl command uses basic auth to send test alert for an email alert profile:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X POST \
Expand Down
2 changes: 1 addition & 1 deletion openapi-specs/compute/30-03/desc/audits/access_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Deletes **all** access audits. This deletion cannot be undone.


```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X DELETE \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Returns the docker access audit events data in CSV format that are logged and ag
**Note**: You can download the access events from Console under **Monitor > Events > Docker audits > Download CSV**.

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: text/csv' \
-X GET \
Expand Down
6 changes: 3 additions & 3 deletions openapi-specs/compute/30-03/desc/audits/access_filters_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The following example uses basic auth to list history of commands that are run o


```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand All @@ -16,7 +16,7 @@ The following command gives list of sudo events on hosts.


```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand All @@ -27,7 +27,7 @@ $ curl -k \
The following command gives list of SSHD events on hosts.

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
2 changes: 1 addition & 1 deletion openapi-specs/compute/30-03/desc/audits/access_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ You can configure Prisma Cloud Compute to log and aggregate events such as sudo
Refer to the following example cURL command that gives a list of all access audit events:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Returns the access admission events data in CSV format that were alerted or bloc
Refer to the following example cURL command that downloads the admission audit events:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: text/csv' \
-X GET \
Expand Down
2 changes: 1 addition & 1 deletion openapi-specs/compute/30-03/desc/audits/admission_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Returns all activities that were alerted or blocked by Defender functioning as O
Refer to the following example cURL command that gives a list of all admission audit events:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For containers, rules are defined between:
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: text/csv' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For containers, rules are defined between:
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ For hosts, rules are defined between:
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: text/csv' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ For hosts, rules are defined between:
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ You can get an incident ID from the list of incidents using the endpoint GET /ap
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X PATCH \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This endpoint maps to the **CSV** hyperlink in **Monitor > Runtime > Incident ex
The following cURL command downloads all incidents and saves the result in a CSV file called `incidents.csv`:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: text/csv' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This endpoint lists the incident categories found in your environment.
The following example lists incident filters.

```bash
$ curl -k \
$ curl \
-u <USER> \
https://console:8083/api/v1/audits/incidents/filters
```
Expand Down
2 changes: 1 addition & 1 deletion openapi-specs/compute/30-03/desc/audits/incidents_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This endpoint maps to the table in **Monitor > Runtime > Incident explorer** in
Refer to the following example cURL command that retrieves a list of unacknowledged incidents (not in the archived state):

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Returns the audit events data that occur in an integrated Kubernetes cluster tha
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: text/csv' \
-X GET \
Expand Down
2 changes: 1 addition & 1 deletion openapi-specs/compute/30-03/desc/audits/kubernetes_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Retrieves events that occur in an integrated Kubernetes cluster that you configu
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Management audits are:
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: text/csv' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Use these filters to query management audit events.
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
2 changes: 1 addition & 1 deletion openapi-specs/compute/30-03/desc/audits/mgmt_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Management audit events are:
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Returns the app-embedded runtime audit events data in CSV format.
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: text/csv' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Retrieves all app-embedded runtime audit events.
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Deletes all container runtime audits.
The following example curl command uses basic auth to delete all the audits:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X DELETE \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Returns the container audit events data in CSV format when a runtime sensor such
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-X GET \
-o <runtime_container_audits.csv> \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Retrieves all container audit events when a runtime sensor such as process, netw
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Use the following mandatory query parameters to fetch results:
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Returns the audit events data in CSV format for file-integrity checks that are c
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Retrieves all audit events for file-integrity checks that are configured under h
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Deletes all host audits from the database.
The following example curl command uses basic auth to delete all host audits:

```bash
$ curl -k \
$ curl \
-u <USER> \
-X DELETE \
https://<CONSOLE>:8083/api/v1/audits/runtime/host
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Returns the runtime host audit events data in CSV format.
Refer to the following example cURL command:

```bash
$ curl -k \
$ curl \
-u <USER> \
-H 'Content-Type: text/csv' \
-X GET \
Expand Down
Loading
Loading