Yogesh | bdb8810 | 2015-09-29 23:41:02 -0400 | [diff] [blame^] | 1 | # 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 | |
| 13 | STATUS_ERROR = 'error' |
| 14 | STATUS_AVAILABLE = 'available' |
| 15 | STATUS_ERROR_DELETING = 'error_deleting' |
| 16 | |
| 17 | TEMPEST_MANILA_PREFIX = 'tempest-manila' |
| 18 | REPLICATION_STYLE_READABLE = 'readable' |
| 19 | REPLICATION_STYLE_WRITABLE = 'writable' |
| 20 | REPLICATION_STYLE_DR = 'dr' |
| 21 | REPLICATION_TYPE_CHOICES = ( |
| 22 | REPLICATION_STYLE_READABLE, |
| 23 | REPLICATION_STYLE_WRITABLE, |
| 24 | REPLICATION_STYLE_DR, |
| 25 | ) |
| 26 | REPLICATION_PROMOTION_CHOICES = ( |
| 27 | REPLICATION_STYLE_READABLE, |
| 28 | REPLICATION_STYLE_DR, |
| 29 | ) |
| 30 | REPLICATION_STATE_ACTIVE = 'active' |
| 31 | REPLICATION_STATE_IN_SYNC = 'in_sync' |
| 32 | REPLICATION_STATE_OUT_OF_SYNC = 'out_of_sync' |
| 33 | |
| 34 | RULE_STATE_ACTIVE = 'active' |
| 35 | RULE_STATE_OUT_OF_SYNC = 'out_of_sync' |
| 36 | RULE_STATE_ERROR = 'error' |