aboutsummaryrefslogtreecommitdiffstats
path: root/lcm/pub/enum.py
blob: 0a667a51be2d95e83a75def5d8d00b5efa375a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright 2019 ZTE Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from lcm.pub.utils.enumutil import enum

JOB_STATUS = enum(
    FINISH=1,
    PROCESSING=0
)
JOB_MODEL_STATUS = enum(
    ERROR='error',
    FINISHED='finished',
    PROCESSING='processing',
    STARTED='started',
    TIMEOUT='timeout'
)
JOB_TYPE = enum(
    CREATE_VNF="create vnf",
    HEAL_VNF="heal vnf",
    GRANT_VNF="grant vnf",
    MANUAL_SCALE_VNF="manual scale vnf",
    TERMINATE_NS="terminate ns",
    TERMINATE_VNF="terminate vnf",
    UPDATE_NS="update ns"
)
JOB_PROGRESS = enum(
    ERROR=255,
    FINISHED=100,
    PARTLY_FINISHED=101,
    STARTED=0
)
JOB_ERROR_CODE = enum(
    NO_ERROR="0",
    ERROR="255"
)