ToxiProxy
get_proxy_attribute
Returns an attribute of a specified proxy
Below are the details and signature of the activity Python module.
Type | action |
Module | chaostoxi.proxy.actions |
Name | delete_proxy |
Return | None |
Usage
JSON
{
"name": "delete-proxy",
"type": "action",
"provider": {
"type": "python",
"module": "chaostoxi.proxy.actions",
"func": "delete_proxy",
"arguments": {
"proxy_name": ""
}
}
}
YAML
name: delete-proxy
provider:
arguments:
proxy_name: ""
func: delete_proxy
module: chaostoxi.proxy.actions
type: python
type: action
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
proxy_name | string | Yes | Proxy Name | Name of the proxy to delete |
Signature
def delete_proxy(proxy_name: str,
configuration: Dict[str, Dict[str, str]] = None):
pass