-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
automated generation of docs from buildkite
- Loading branch information
the ngrok rock 🪨
committed
Aug 2, 2024
1 parent
f9d7482
commit 8da1c3a
Showing
1,640 changed files
with
4,758 additions
and
4,119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
import EdgeRouteTrafficPolicyModuleDeleteRequest from "./examples/_edge_route_traffic_policy_module_delete_request.md"; | ||
import EdgeRouteTrafficPolicyModuleDeleteResponse from "./examples/_edge_route_traffic_policy_module_delete_response.md"; | ||
import EdgeRouteTrafficPolicyModuleGetRequest from "./examples/_edge_route_traffic_policy_module_get_request.md"; | ||
import EdgeRouteTrafficPolicyModuleGetResponse from "./examples/_edge_route_traffic_policy_module_get_response.md"; | ||
import EdgeRouteTrafficPolicyModuleReplaceRequest from "./examples/_edge_route_traffic_policy_module_replace_request.md"; | ||
import EdgeRouteTrafficPolicyModuleReplaceResponse from "./examples/_edge_route_traffic_policy_module_replace_response.md"; | ||
|
||
# Edge Route Traffic Policy Module | ||
|
||
## Replace HTTPS Edge Route Traffic Policy Module | ||
|
||
### Request | ||
|
||
PUT /edges/https/\{edge_id\}/routes/\{id\}/traffic_policy | ||
|
||
<EdgeRouteTrafficPolicyModuleReplaceRequest /> | ||
|
||
#### Parameters | ||
|
||
| Name | Type | Description | | ||
| --------- | ------- | -------------------------------------------------------------------------------------------------- | | ||
| `enabled` | boolean | `true` if the module will be applied to traffic, `false` to disable. default `true` if unspecified | | ||
| `value` | string | the traffic policy that should be applied to the traffic on your endpoint. | | ||
|
||
### Response | ||
|
||
Returns a 200 response on success | ||
|
||
<EdgeRouteTrafficPolicyModuleReplaceResponse /> | ||
|
||
#### Fields | ||
|
||
| Name | Type | Description | | ||
| --------- | ------- | -------------------------------------------------------------------------------------------------- | | ||
| `enabled` | boolean | `true` if the module will be applied to traffic, `false` to disable. default `true` if unspecified | | ||
| `value` | string | the traffic policy that should be applied to the traffic on your endpoint. | | ||
|
||
## Get HTTPS Edge Route Traffic Policy Module | ||
|
||
### Request | ||
|
||
GET /edges/https/\{edge_id\}/routes/\{id\}/traffic_policy | ||
|
||
<EdgeRouteTrafficPolicyModuleGetRequest /> | ||
|
||
### Response | ||
|
||
Returns a 200 response on success | ||
|
||
<EdgeRouteTrafficPolicyModuleGetResponse /> | ||
|
||
#### Fields | ||
|
||
| Name | Type | Description | | ||
| --------- | ------- | -------------------------------------------------------------------------------------------------- | | ||
| `enabled` | boolean | `true` if the module will be applied to traffic, `false` to disable. default `true` if unspecified | | ||
| `value` | string | the traffic policy that should be applied to the traffic on your endpoint. | | ||
|
||
## Delete HTTPS Edge Route Traffic Policy Module | ||
|
||
### Request | ||
|
||
DELETE /edges/https/\{edge_id\}/routes/\{id\}/traffic_policy | ||
|
||
<EdgeRouteTrafficPolicyModuleDeleteRequest /> | ||
|
||
### Response | ||
|
||
Returns a 204 response with no body on success |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.