File tree Expand file tree Collapse file tree 3 files changed +29
-12
lines changed
Expand file tree Collapse file tree 3 files changed +29
-12
lines changed Original file line number Diff line number Diff 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/>
Original file line number Diff line number Diff 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/>
Original file line number Diff line number Diff 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
113115In the response body, the initial provisioning state should be ` provisioning ` .
You can’t perform that action at this time.
0 commit comments