blob: bef35a53f025a1d9d1c247016d809197ec584874 [file] [log] [blame]
Yogeshbdb88102015-09-29 23:41:02 -04001# Licensed under the Apache License, Version 2.0 (the "License"); you may
2# not use this file except in compliance with the License. You may obtain
3# a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10# License for the specific language governing permissions and limitations
11# under the License.
12
13STATUS_ERROR = 'error'
14STATUS_AVAILABLE = 'available'
15STATUS_ERROR_DELETING = 'error_deleting'
16
17TEMPEST_MANILA_PREFIX = 'tempest-manila'
18REPLICATION_STYLE_READABLE = 'readable'
19REPLICATION_STYLE_WRITABLE = 'writable'
20REPLICATION_STYLE_DR = 'dr'
21REPLICATION_TYPE_CHOICES = (
22 REPLICATION_STYLE_READABLE,
23 REPLICATION_STYLE_WRITABLE,
24 REPLICATION_STYLE_DR,
25)
26REPLICATION_PROMOTION_CHOICES = (
27 REPLICATION_STYLE_READABLE,
28 REPLICATION_STYLE_DR,
29)
30REPLICATION_STATE_ACTIVE = 'active'
31REPLICATION_STATE_IN_SYNC = 'in_sync'
32REPLICATION_STATE_OUT_OF_SYNC = 'out_of_sync'
33
34RULE_STATE_ACTIVE = 'active'
35RULE_STATE_OUT_OF_SYNC = 'out_of_sync'
36RULE_STATE_ERROR = 'error'