heat api management and template functions parameters
[bottlenecks.git] / utils / infra_setup / heat / consts / files.py
1 ##############################################################################
2 # Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
3 #
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 # Configuration File
12 # ------------------------------------------------------
13 GENERAL = 'General'
14
15 def get_sections():
16     return [
17         GENERAL,
18         # Add here new configurations...
19     ]
20
21
22 def get_sections_api():
23     return [
24         GENERAL,
25         # Add here new configurations...
26     ]
27
28 # ------------------------------------------------------
29 # General section parameters
30 # ------------------------------------------------------
31 ITERATIONS = 'iterations'
32 TEMPLATE_DIR = 'template_dir'
33 TEMPLATE_NAME = 'template_base_name'
34 BENCHMARKS = 'benchmarks'
35 DEBUG = 'debug'