actionWiremock

up

Deletes all delays connected with a list of mappings

Activity as code

Below are the details and signature of the activity Python module.

Typeaction
Modulechaoswm.actions
Nameup
Returnlist

Usage

JSON

{
  "name": "up",
  "type": "action",
  "provider": {
    "type": "python",
    "module": "chaoswm.actions",
    "func": "up",
    "arguments": {
      "filter": []
    }
  }
}

YAML

name: up
provider:
  arguments:
    filter: []
  func: up
  module: chaoswm.actions
  type: python
type: action

Arguments

NameTypeDefaultRequiredTitleDescription
filterlistYesFilterRemove all delays matching the given filters

Signature

def up(filter: List[Any],
       configuration: Dict[str, Dict[str, str]] = None) -> List[Any]:
    pass