Skip to content

Commit 0c4da0f

Browse files
committed
ignore the swap file
2 parents a3759fc + 73dd845 commit 0c4da0f

41 files changed

Lines changed: 91 additions & 91 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

products/compute/api/30-03/set-up-console.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To do this, use the [Signup](/compute/api/post-signup/) ![alt text](/icons/api-i
1818
The following example curl command creates the initial admin user named butterbean.
1919

2020
```bash
21-
$ curl -k \
21+
$ curl \
2222
-H 'Content-Type: application/json' \
2323
-X POST \
2424
-d '{"username": "butterbean", "password": "<PASSWORD>"}' \

products/compute/api/30-03/welcome-prisma-cloud-apis.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The cURL command can be modified to use any of the following:
6969
For example, replace `<ACCESS_TOKEN>` with the token from the [Authenticate](/prisma-cloud/api/cwpp/post-authenticate/) ![alt text](/icons/api-icon-pan-dev.svg) endpoint.
7070

7171
```bash
72-
$ curl -k \
72+
$ curl \
7373
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
7474
-X POST \
7575
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
@@ -80,7 +80,7 @@ https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
8080
For example, replace `<USER>` with the username string and `<PASSWORD>` with the password string.
8181

8282
```bash
83-
$ curl -k \
83+
$ curl \
8484
-u <USER> \
8585
-p <PASSWORD> \
8686
-X POST \
@@ -92,7 +92,7 @@ https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
9292
For example, replace `<USER>` with the username string.
9393

9494
```bash
95-
$ curl -k \
95+
$ curl \
9696
-u <USER> \
9797
-X POST \
9898
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>

products/compute/api/31-02/set-up-console.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To do this, use the [Signup](/compute/api/post-signup/) ![alt text](/icons/api-i
1818
The following example curl command creates the initial admin user named butterbean.
1919

2020
```bash
21-
$ curl -k \
21+
$ curl \
2222
-H 'Content-Type: application/json' \
2323
-X POST \
2424
-d '{"username": "butterbean", "password": "<PASSWORD>"}' \

products/compute/api/31-02/welcome-prisma-cloud-apis.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The cURL command can be modified to use any of the following:
6262
For example, replace `<ACCESS_TOKEN>` with the token from the [Authenticate](/prisma-cloud/api/cwpp/post-authenticate/) ![alt text](/icons/api-icon-pan-dev.svg) endpoint.
6363

6464
```bash
65-
$ curl -k \
65+
$ curl \
6666
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
6767
-X POST \
6868
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
@@ -73,7 +73,7 @@ https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
7373
For example, replace `<USER>` with the username string and `<PASSWORD>` with the password string.
7474

7575
```bash
76-
$ curl -k \
76+
$ curl \
7777
-u <USER> \
7878
-p <PASSWORD> \
7979
-X POST \
@@ -85,7 +85,7 @@ https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
8585
For example, replace `<USER>` with the username string.
8686

8787
```bash
88-
$ curl -k \
88+
$ curl \
8989
-u <USER> \
9090
-X POST \
9191
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>

products/compute/api/32-00/set-up-console.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To do this, use the [Signup](/compute/api/post-signup/) ![alt text](/icons/api-i
1818
The following example curl command creates the initial admin user named butterbean.
1919

2020
```bash
21-
$ curl -k \
21+
$ curl \
2222
-H 'Content-Type: application/json' \
2323
-X POST \
2424
-d '{"username": "butterbean", "password": "<PASSWORD>"}' \

products/compute/api/32-00/welcome-prisma-cloud-apis.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The cURL command can be modified to use any of the following:
6262
For example, replace `<ACCESS_TOKEN>` with the token from the [Authenticate](/prisma-cloud/api/cwpp/post-authenticate/) ![alt text](/icons/api-icon-pan-dev.svg) endpoint.
6363

6464
```bash
65-
$ curl -k \
65+
$ curl \
6666
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
6767
-X POST \
6868
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
@@ -73,7 +73,7 @@ https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
7373
For example, replace `<USER>` with the username string and `<PASSWORD>` with the password string.
7474

7575
```bash
76-
$ curl -k \
76+
$ curl \
7777
-u <USER> \
7878
-p <PASSWORD> \
7979
-X POST \
@@ -85,7 +85,7 @@ https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
8585
For example, replace `<USER>` with the username string.
8686

8787
```bash
88-
$ curl -k \
88+
$ curl \
8989
-u <USER> \
9090
-X POST \
9191
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>

products/compute/api/32-01/set-up-console.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To do this, use the [Signup](/compute/api/post-signup/) ![alt text](/icons/api-i
1818
The following example curl command creates the initial admin user named butterbean.
1919

2020
```bash
21-
$ curl -k \
21+
$ curl \
2222
-H 'Content-Type: application/json' \
2323
-X POST \
2424
-d '{"username": "butterbean", "password": "<PASSWORD>"}' \

products/compute/api/32-01/welcome-prisma-cloud-apis.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The cURL command can be modified to use any of the following:
6262
For example, replace `<ACCESS_TOKEN>` with the token from the [Authenticate](/prisma-cloud/api/cwpp/post-authenticate/) ![alt text](/icons/api-icon-pan-dev.svg) endpoint.
6363

6464
```bash
65-
$ curl -k \
65+
$ curl \
6666
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
6767
-X POST \
6868
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
@@ -73,7 +73,7 @@ https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
7373
For example, replace `<USER>` with the username string and `<PASSWORD>` with the password string.
7474

7575
```bash
76-
$ curl -k \
76+
$ curl \
7777
-u <USER> \
7878
-p <PASSWORD> \
7979
-X POST \
@@ -85,7 +85,7 @@ https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
8585
For example, replace `<USER>` with the username string.
8686

8787
```bash
88-
$ curl -k \
88+
$ curl \
8989
-u <USER> \
9090
-X POST \
9191
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>

products/compute/api/32-02/set-up-console.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To do this, use the [Signup](/compute/api/post-signup/) ![alt text](/icons/api-i
1818
The following example curl command creates the initial admin user named butterbean.
1919

2020
```bash
21-
$ curl -k \
21+
$ curl \
2222
-H 'Content-Type: application/json' \
2323
-X POST \
2424
-d '{"username": "butterbean", "password": "<PASSWORD>"}' \

products/compute/api/32-02/welcome-prisma-cloud-apis.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The cURL command can be modified to use any of the following:
6262
For example, replace `<ACCESS_TOKEN>` with the token from the [Authenticate](/prisma-cloud/api/cwpp/post-authenticate/) ![alt text](/icons/api-icon-pan-dev.svg) endpoint.
6363

6464
```bash
65-
$ curl -k \
65+
$ curl \
6666
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
6767
-X POST \
6868
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
@@ -73,7 +73,7 @@ https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
7373
For example, replace `<USER>` with the username string and `<PASSWORD>` with the password string.
7474

7575
```bash
76-
$ curl -k \
76+
$ curl \
7777
-u <USER> \
7878
-p <PASSWORD> \
7979
-X POST \
@@ -85,7 +85,7 @@ https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>
8585
For example, replace `<USER>` with the username string.
8686

8787
```bash
88-
$ curl -k \
88+
$ curl \
8989
-u <USER> \
9090
-X POST \
9191
https://<CONSOLE>/api/vVERSION/<ENDPOINT_PATH>

0 commit comments

Comments
 (0)