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 | |
Clinton Knight | 7f16b8c | 2016-06-08 13:46:51 -0700 | [diff] [blame^] | 13 | # Shares |
Yogesh | bdb8810 | 2015-09-29 23:41:02 -0400 | [diff] [blame] | 14 | STATUS_ERROR = 'error' |
| 15 | STATUS_AVAILABLE = 'available' |
| 16 | STATUS_ERROR_DELETING = 'error_deleting' |
Yogesh | bdb8810 | 2015-09-29 23:41:02 -0400 | [diff] [blame] | 17 | TEMPEST_MANILA_PREFIX = 'tempest-manila' |
Clinton Knight | 7f16b8c | 2016-06-08 13:46:51 -0700 | [diff] [blame^] | 18 | |
| 19 | # Replication |
Yogesh | bdb8810 | 2015-09-29 23:41:02 -0400 | [diff] [blame] | 20 | REPLICATION_STYLE_READABLE = 'readable' |
| 21 | REPLICATION_STYLE_WRITABLE = 'writable' |
| 22 | REPLICATION_STYLE_DR = 'dr' |
| 23 | REPLICATION_TYPE_CHOICES = ( |
| 24 | REPLICATION_STYLE_READABLE, |
| 25 | REPLICATION_STYLE_WRITABLE, |
| 26 | REPLICATION_STYLE_DR, |
| 27 | ) |
| 28 | REPLICATION_PROMOTION_CHOICES = ( |
| 29 | REPLICATION_STYLE_READABLE, |
| 30 | REPLICATION_STYLE_DR, |
| 31 | ) |
| 32 | REPLICATION_STATE_ACTIVE = 'active' |
| 33 | REPLICATION_STATE_IN_SYNC = 'in_sync' |
| 34 | REPLICATION_STATE_OUT_OF_SYNC = 'out_of_sync' |
| 35 | |
Clinton Knight | 7f16b8c | 2016-06-08 13:46:51 -0700 | [diff] [blame^] | 36 | # Access Rules |
Yogesh | bdb8810 | 2015-09-29 23:41:02 -0400 | [diff] [blame] | 37 | RULE_STATE_ACTIVE = 'active' |
| 38 | RULE_STATE_OUT_OF_SYNC = 'out_of_sync' |
| 39 | RULE_STATE_ERROR = 'error' |
Rodrigo Barbieri | c9abf28 | 2016-08-24 22:01:31 -0300 | [diff] [blame] | 40 | |
| 41 | TASK_STATE_MIGRATION_STARTING = 'migration_starting' |
| 42 | TASK_STATE_MIGRATION_IN_PROGRESS = 'migration_in_progress' |
| 43 | TASK_STATE_MIGRATION_COMPLETING = 'migration_completing' |
| 44 | TASK_STATE_MIGRATION_SUCCESS = 'migration_success' |
| 45 | TASK_STATE_MIGRATION_ERROR = 'migration_error' |
| 46 | TASK_STATE_MIGRATION_CANCELLED = 'migration_cancelled' |
| 47 | TASK_STATE_MIGRATION_DRIVER_STARTING = 'migration_driver_starting' |
| 48 | TASK_STATE_MIGRATION_DRIVER_IN_PROGRESS = 'migration_driver_in_progress' |
| 49 | TASK_STATE_MIGRATION_DRIVER_PHASE1_DONE = 'migration_driver_phase1_done' |
| 50 | TASK_STATE_DATA_COPYING_STARTING = 'data_copying_starting' |
| 51 | TASK_STATE_DATA_COPYING_IN_PROGRESS = 'data_copying_in_progress' |
| 52 | TASK_STATE_DATA_COPYING_COMPLETING = 'data_copying_completing' |
| 53 | TASK_STATE_DATA_COPYING_COMPLETED = 'data_copying_completed' |
| 54 | TASK_STATE_DATA_COPYING_CANCELLED = 'data_copying_cancelled' |
| 55 | TASK_STATE_DATA_COPYING_ERROR = 'data_copying_error' |
Clinton Knight | 7f16b8c | 2016-06-08 13:46:51 -0700 | [diff] [blame^] | 56 | |
| 57 | # Revert to snapshot |
| 58 | REVERT_TO_SNAPSHOT_MICROVERSION = '2.27' |
| 59 | REVERT_TO_SNAPSHOT_SUPPORT = 'revert_to_snapshot_support' |
| 60 | STATUS_RESTORING = 'restoring' |
| 61 | STATUS_REVERTING = 'reverting' |
| 62 | STATUS_REVERTING_ERROR = 'reverting_error' |