add yardstick iruya 9.0.0 release notes
[yardstick.git] / yardstick / network_services / vnf_generic / vnf / agnostic_vnf.py
1 # Copyright (c) 2018-2019 Intel Corporation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import logging
16
17 from yardstick.network_services.vnf_generic.vnf import base
18
19 LOG = logging.getLogger(__name__)
20
21
22 class AgnosticVnf(base.GenericVNF):
23     """ AgnosticVnf implementation. """
24     def __init__(self, name, vnfd):
25         super(AgnosticVnf, self).__init__(name, vnfd)
26
27     def instantiate(self, scenario_cfg, context_cfg):
28         pass
29
30     def wait_for_instantiate(self):
31         pass
32
33     def terminate(self):
34         pass
35
36     def scale(self, flavor=""):
37         pass
38
39     def collect_kpi(self):
40         pass
41
42     def start_collect(self):
43         pass
44
45     def stop_collect(self):
46         pass