WireMock
global_random_delay
Adds a random delay to all mappings
Below are the details and signature of the activity Python module.
Type | action |
Module | chaoswm.actions |
Name | delete_mappings |
Return | list |
Usage
JSON
{
"name": "delete-mappings",
"type": "action",
"provider": {
"type": "python",
"module": "chaoswm.actions",
"func": "delete_mappings",
"arguments": {
"filter": []
}
}
}
YAML
name: delete-mappings
provider:
arguments:
filter: []
func: delete_mappings
module: chaoswm.actions
type: python
type: action
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
filter | list | Yes | Filter | Servers to remove |
Returns the list of ids of the mappings deleted
Signature
def delete_mappings(
filter: List[Any],
configuration: Dict[str, Dict[str, str]] = None) -> List[Any]:
pass