WireMock
delete_mappings
Deletes a list of mappings
Below are the details and signature of the activity Python module.
Type | action |
Module | chaoswm.actions |
Name | down |
Return | list |
Usage
JSON
{
"name": "down",
"type": "action",
"provider": {
"type": "python",
"module": "chaoswm.actions",
"func": "down",
"arguments": {
"filter": []
}
}
}
YAML
name: down
provider:
arguments:
filter: []
func: down
module: chaoswm.actions
type: python
type: action
Arguments
Name | Type | Default | Required |
---|---|---|---|
filter | list | Yes |
This action adds a chunked dribble delay to the mapping as defined in the configuration section (or action attributes). It returns the list of delayed mappings.
Signature
def down(filter: List[Any],
configuration: Dict[str, Dict[str, str]] = None) -> List[Any]:
pass