actionWiremock

chunked_dribble_delay

Adds a chunked dribble delay to a list of mappings

Activity as code

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

Typeaction
Modulechaoswm.actions
Namechunked_dribble_delay
Returnlist

Usage

JSON

{
  "name": "chunked-dribble-delay",
  "type": "action",
  "provider": {
    "type": "python",
    "module": "chaoswm.actions",
    "func": "chunked_dribble_delay",
    "arguments": {
      "filter": [],
      "chunkedDribbleDelay": null
    }
  }
}

YAML

name: chunked-dribble-delay
provider:
  arguments:
    chunkedDribbleDelay: null
    filter: []
  func: chunked_dribble_delay
  module: chaoswm.actions
  type: python
type: action

Arguments

NameTypeDefaultRequiredTitleDescription
filterlistYesFilterFilter to add fixed delay to
chunkedDribbleDelayinteger0NoChunked Dribble DelayDelay to apply to the matching filter

Signature

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