UNPKG

1.74 kBJavaScriptView Raw
1/**
2 * Copyright 2016-2018 F5 Networks, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17'use strict';
18
19/**
20 * @module
21 */
22module.exports = {
23 /**
24 * @constant
25 */
26 REBOOT: 'REBOOT',
27
28 /**
29 * @constant
30 */
31 REBOOT_REQUIRED: 'REBOOT_REQUIRED',
32
33 /**
34 * @constant
35 */
36 NETWORK_DONE: 'NETWORK_DONE',
37
38 /**
39 * @constant
40 */
41 NETWORK_RUNNING: 'NETWORK_RUNNING',
42
43 /**
44 * @constant
45 */
46 ONBOARD_DONE: 'ONBOARD_DONE',
47
48 /**
49 * @constant
50 */
51 ONBOARD_RUNNING: 'ONBOARD_RUNNING',
52
53 /**
54 * @constant
55 */
56 CLUSTER_DONE: 'CLUSTER_DONE',
57
58 /**
59 * @constant
60 */
61 CLUSTER_RUNNING: 'CLUSTER_RUNNING',
62
63 /**
64 * @constant
65 */
66 DECRYPTION_DONE: 'DECRYPTION_DONE',
67
68 /**
69 * @constant
70 */
71 DECRYPTION_RUNNING: 'DECRYPTION_RUNNING',
72
73 /**
74 * @constant
75 */
76 ENCRYPTION_DONE: 'ENCRYPTION_DONE',
77
78 /**
79 * @constant
80 */
81 ENCRYPTION_RUNNING: 'ENCRYPTION_RUNNING',
82
83 /**
84 * @constant
85 */
86 SCRIPT_RUNNING: 'SCRIPT_RUNNING',
87
88 /**
89 * @constant
90 */
91 SCRIPT_DONE: 'SCRIPT_DONE',
92
93 /**
94 * @constant
95 */
96 CLOUD_LIBS_ERROR: 'CLOUD_LIBS_ERROR'
97};