Creating Director and related codes.
[yardstick.git] / yardstick / benchmark / scenarios / availability / __init__.py
1 ##############################################################################
2 # Copyright (c) 2016 Juan Qiu and others
3 # juan_ qiu@tongji.edu.cn
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10
11 class ActionType:
12     ATTACKER = "attacker"
13     MONITOR = "monitor"
14     RESULTCHECKER = "resultchecker"
15     OPERATION = "operation"
16
17
18 class Condition:
19     EQUAL = "eq"
20     GREATERTHAN = "gt"
21     GREATERTHANEQUAL = "gt_eq"
22     LESSTHAN = "lt"
23     LESSTHANEQUAL = "lt_eq"
24     IN = "in"