Skip to content

Commit 84ac343

Browse files
First pass and placeholder component syntax
1 parent 26421f6 commit 84ac343

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

src/content/docs/aegis/setup.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ sidebar:
77
hideIndex: true
88
---
99

10+
import { APIRequest } from "~/components";
11+
1012
You can control Aegis enablement on your zones via API. If you are not familiar with how Cloudflare API works, refer to [Fundamentals](/fundamentals/api/).
1113

1214
:::caution[Availability]
@@ -34,3 +36,9 @@ Cloudflare Aegis is available in early access to Enterprise customers. Contact y
3436
},
3537
}'
3638
```
39+
40+
<APIRequest
41+
path=""
42+
method=""
43+
json={{}}
44+
/>

src/content/docs/byoip/address-maps/setup.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar:
66
label: Setup
77
---
88

9-
import { GlossaryTooltip } from "~/components";
9+
import { GlossaryTooltip, APIRequest } from "~/components";
1010

1111
Consider the sections below to learn how to set up address maps.
1212

@@ -79,3 +79,9 @@ curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/addressing/addres
7979
"memberships": []
8080
}'
8181
```
82+
83+
<APIRequest
84+
path=""
85+
method=""
86+
json={{}}
87+
/>

src/content/docs/byoip/service-bindings/magic-transit-with-cdn.mdx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar:
66
label: Magic Transit with CDN
77
---
88

9-
import { Details, Example, TabItem, Tabs, GlossaryTooltip } from "~/components";
9+
import { Details, Example, TabItem, Tabs, GlossaryTooltip, APIRequest } from "~/components";
1010

1111
[Magic Transit](/magic-transit/) customers using BYOIP can also benefit from the performance, reliability, and security that Cloudflare offers for HTTP-based applications.
1212

@@ -71,6 +71,12 @@ curl https://api.cloudflare.com/client/v4/accounts/{account_id}/addressing/prefi
7171
--header "Authorization: Bearer <API_TOKEN>"
7272
```
7373

74+
<APIRequest
75+
path=""
76+
method=""
77+
json={{}}
78+
/>
79+
7480
</Example>
7581

7682
## 2. Create service binding
@@ -98,6 +104,12 @@ curl https://api.cloudflare.com/client/v4/accounts/{account_id}/addressing/prefi
98104
}'
99105
```
100106

107+
<APIRequest
108+
path=""
109+
method=""
110+
json={{}}
111+
/>
112+
101113
In the response body, the initial provisioning state should be `provisioning`.
102114

103115
```json

0 commit comments

Comments
 (0)