Skip to content

Commit c437262

Browse files
Fill in component props throughout
1 parent 84ac343 commit c437262

File tree

3 files changed

+29
-12
lines changed

3 files changed

+29
-12
lines changed

src/content/docs/aegis/setup.mdx

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,16 @@ Cloudflare Aegis is available in early access to Enterprise customers. Contact y
3838
```
3939

4040
<APIRequest
41-
path=""
42-
method=""
43-
json={{}}
41+
path="/zones/{zone_id}/settings/{setting_id}"
42+
method="PATCH"
43+
json={{
44+
"id": "aegis",
45+
"value": {
46+
"enabled": true,
47+
"pool_id": "<YOUR_EGRESS_POOL_ID>",
48+
},
49+
}}
50+
parameters={{
51+
setting_id: "aegis",
52+
}}
4453
/>

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,13 @@ curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/addressing/addres
8181
```
8282

8383
<APIRequest
84-
path=""
85-
method=""
86-
json={{}}
84+
path="/accounts/{account_id}/addressing/address_maps"
85+
method="POST"
86+
json={{
87+
"description": "default_sni",
88+
"default_sni": "sni.example.com",
89+
"enabled": false,
90+
"ips": ["192.0.0.1"],
91+
"memberships": [],
92+
}}
8793
/>

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

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,8 @@ curl https://api.cloudflare.com/client/v4/accounts/{account_id}/addressing/prefi
7272
```
7373

7474
<APIRequest
75-
path=""
76-
method=""
77-
json={{}}
75+
path="/accounts/{account_id}/addressing/prefixes/{prefix_id}/bindings"
76+
method="GET"
7877
/>
7978

8079
</Example>
@@ -105,9 +104,12 @@ curl https://api.cloudflare.com/client/v4/accounts/{account_id}/addressing/prefi
105104
```
106105

107106
<APIRequest
108-
path=""
109-
method=""
110-
json={{}}
107+
path="/accounts/{account_id}/addressing/prefixes/{prefix_id}/bindings"
108+
method="POST"
109+
json={{
110+
"cidr": "203.0.113.100/32",
111+
"service_id": "<SERVICE_ID>",
112+
}}
111113
/>
112114

113115
In the response body, the initial provisioning state should be `provisioning`.

0 commit comments

Comments
 (0)