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 | f5bc653 | 2016-10-25 14:57:11 -0400 | [diff] [blame] | 17 | STATUS_MIGRATING = 'migrating' |
| 18 | |
Yogesh | bdb8810 | 2015-09-29 23:41:02 -0400 | [diff] [blame] | 19 | TEMPEST_MANILA_PREFIX = 'tempest-manila' |
Clinton Knight | 7f16b8c | 2016-06-08 13:46:51 -0700 | [diff] [blame] | 20 | |
| 21 | # Replication |
Yogesh | bdb8810 | 2015-09-29 23:41:02 -0400 | [diff] [blame] | 22 | REPLICATION_STYLE_READABLE = 'readable' |
| 23 | REPLICATION_STYLE_WRITABLE = 'writable' |
| 24 | REPLICATION_STYLE_DR = 'dr' |
| 25 | REPLICATION_TYPE_CHOICES = ( |
| 26 | REPLICATION_STYLE_READABLE, |
| 27 | REPLICATION_STYLE_WRITABLE, |
| 28 | REPLICATION_STYLE_DR, |
| 29 | ) |
| 30 | REPLICATION_PROMOTION_CHOICES = ( |
| 31 | REPLICATION_STYLE_READABLE, |
| 32 | REPLICATION_STYLE_DR, |
| 33 | ) |
| 34 | REPLICATION_STATE_ACTIVE = 'active' |
| 35 | REPLICATION_STATE_IN_SYNC = 'in_sync' |
| 36 | REPLICATION_STATE_OUT_OF_SYNC = 'out_of_sync' |
| 37 | |
Clinton Knight | 7f16b8c | 2016-06-08 13:46:51 -0700 | [diff] [blame] | 38 | # Access Rules |
Yogesh | bdb8810 | 2015-09-29 23:41:02 -0400 | [diff] [blame] | 39 | RULE_STATE_ACTIVE = 'active' |
| 40 | RULE_STATE_OUT_OF_SYNC = 'out_of_sync' |
| 41 | RULE_STATE_ERROR = 'error' |
Rodrigo Barbieri | c9abf28 | 2016-08-24 22:01:31 -0300 | [diff] [blame] | 42 | |
| 43 | TASK_STATE_MIGRATION_STARTING = 'migration_starting' |
| 44 | TASK_STATE_MIGRATION_IN_PROGRESS = 'migration_in_progress' |
| 45 | TASK_STATE_MIGRATION_COMPLETING = 'migration_completing' |
| 46 | TASK_STATE_MIGRATION_SUCCESS = 'migration_success' |
| 47 | TASK_STATE_MIGRATION_ERROR = 'migration_error' |
| 48 | TASK_STATE_MIGRATION_CANCELLED = 'migration_cancelled' |
| 49 | TASK_STATE_MIGRATION_DRIVER_STARTING = 'migration_driver_starting' |
| 50 | TASK_STATE_MIGRATION_DRIVER_IN_PROGRESS = 'migration_driver_in_progress' |
| 51 | TASK_STATE_MIGRATION_DRIVER_PHASE1_DONE = 'migration_driver_phase1_done' |
| 52 | TASK_STATE_DATA_COPYING_STARTING = 'data_copying_starting' |
| 53 | TASK_STATE_DATA_COPYING_IN_PROGRESS = 'data_copying_in_progress' |
| 54 | TASK_STATE_DATA_COPYING_COMPLETING = 'data_copying_completing' |
| 55 | TASK_STATE_DATA_COPYING_COMPLETED = 'data_copying_completed' |
| 56 | TASK_STATE_DATA_COPYING_CANCELLED = 'data_copying_cancelled' |
| 57 | TASK_STATE_DATA_COPYING_ERROR = 'data_copying_error' |
Clinton Knight | 7f16b8c | 2016-06-08 13:46:51 -0700 | [diff] [blame] | 58 | |
| 59 | # Revert to snapshot |
| 60 | REVERT_TO_SNAPSHOT_MICROVERSION = '2.27' |
| 61 | REVERT_TO_SNAPSHOT_SUPPORT = 'revert_to_snapshot_support' |
| 62 | STATUS_RESTORING = 'restoring' |
| 63 | STATUS_REVERTING = 'reverting' |
| 64 | STATUS_REVERTING_ERROR = 'reverting_error' |
Andrew Kerr | b843692 | 2016-06-01 15:32:43 -0400 | [diff] [blame] | 65 | |
| 66 | # Share groups |
| 67 | MIN_SHARE_GROUP_MICROVERSION = '2.31' |
| 68 | SHARE_GROUP_SIMPLE_KEYS = { |
| 69 | 'id', 'name', 'links', |
| 70 | } |
| 71 | SHARE_GROUP_DETAIL_REQUIRED_KEYS = { |
| 72 | 'id', 'name', 'description', 'created_at', 'status', 'share_types', |
| 73 | 'project_id', 'host', 'links', 'share_group_type_id', |
| 74 | } |
| 75 | SHARE_GROUP_SNAPSHOT_SIMPLE_KEYS = { |
| 76 | 'id', 'name', 'links', |
| 77 | } |
| 78 | SHARE_GROUP_SNAPSHOT_DETAIL_REQUIRED_KEYS = { |
| 79 | 'id', 'name', 'description', 'created_at', 'status', 'project_id', |
| 80 | 'links', 'share_group_id', 'members', |
| 81 | } |
| 82 | |
| 83 | SHARE_GROUP_TYPE_REQUIRED_KEYS = { |
| 84 | 'id', 'name', 'share_types', 'is_public', 'group_specs', |
| 85 | } |
zhongjun2 | ac9fbb9 | 2018-07-02 12:30:25 +0000 | [diff] [blame^] | 86 | |
| 87 | MIN_SHARE_ACCESS_METADATA_MICROVERSION = '2.45' |