blob: 25cf4ee7b23727204d2b977d6c5868839a259d91 [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
Clinton Knight7f16b8c2016-06-08 13:46:51 -070013# Shares
Yogeshbdb88102015-09-29 23:41:02 -040014STATUS_ERROR = 'error'
15STATUS_AVAILABLE = 'available'
16STATUS_ERROR_DELETING = 'error_deleting'
yogeshf5bc6532016-10-25 14:57:11 -040017STATUS_MIGRATING = 'migrating'
18
Yogeshbdb88102015-09-29 23:41:02 -040019TEMPEST_MANILA_PREFIX = 'tempest-manila'
Clinton Knight7f16b8c2016-06-08 13:46:51 -070020
21# Replication
Yogeshbdb88102015-09-29 23:41:02 -040022REPLICATION_STYLE_READABLE = 'readable'
23REPLICATION_STYLE_WRITABLE = 'writable'
24REPLICATION_STYLE_DR = 'dr'
25REPLICATION_TYPE_CHOICES = (
26 REPLICATION_STYLE_READABLE,
27 REPLICATION_STYLE_WRITABLE,
28 REPLICATION_STYLE_DR,
29)
30REPLICATION_PROMOTION_CHOICES = (
31 REPLICATION_STYLE_READABLE,
32 REPLICATION_STYLE_DR,
33)
34REPLICATION_STATE_ACTIVE = 'active'
35REPLICATION_STATE_IN_SYNC = 'in_sync'
36REPLICATION_STATE_OUT_OF_SYNC = 'out_of_sync'
37
Clinton Knight7f16b8c2016-06-08 13:46:51 -070038# Access Rules
Yogeshbdb88102015-09-29 23:41:02 -040039RULE_STATE_ACTIVE = 'active'
40RULE_STATE_OUT_OF_SYNC = 'out_of_sync'
41RULE_STATE_ERROR = 'error'
Rodrigo Barbieric9abf282016-08-24 22:01:31 -030042
43TASK_STATE_MIGRATION_STARTING = 'migration_starting'
44TASK_STATE_MIGRATION_IN_PROGRESS = 'migration_in_progress'
45TASK_STATE_MIGRATION_COMPLETING = 'migration_completing'
46TASK_STATE_MIGRATION_SUCCESS = 'migration_success'
47TASK_STATE_MIGRATION_ERROR = 'migration_error'
48TASK_STATE_MIGRATION_CANCELLED = 'migration_cancelled'
49TASK_STATE_MIGRATION_DRIVER_STARTING = 'migration_driver_starting'
50TASK_STATE_MIGRATION_DRIVER_IN_PROGRESS = 'migration_driver_in_progress'
51TASK_STATE_MIGRATION_DRIVER_PHASE1_DONE = 'migration_driver_phase1_done'
52TASK_STATE_DATA_COPYING_STARTING = 'data_copying_starting'
53TASK_STATE_DATA_COPYING_IN_PROGRESS = 'data_copying_in_progress'
54TASK_STATE_DATA_COPYING_COMPLETING = 'data_copying_completing'
55TASK_STATE_DATA_COPYING_COMPLETED = 'data_copying_completed'
56TASK_STATE_DATA_COPYING_CANCELLED = 'data_copying_cancelled'
57TASK_STATE_DATA_COPYING_ERROR = 'data_copying_error'
Clinton Knight7f16b8c2016-06-08 13:46:51 -070058
59# Revert to snapshot
60REVERT_TO_SNAPSHOT_MICROVERSION = '2.27'
61REVERT_TO_SNAPSHOT_SUPPORT = 'revert_to_snapshot_support'
62STATUS_RESTORING = 'restoring'
63STATUS_REVERTING = 'reverting'
64STATUS_REVERTING_ERROR = 'reverting_error'
Andrew Kerrb8436922016-06-01 15:32:43 -040065
66# Share groups
67MIN_SHARE_GROUP_MICROVERSION = '2.31'
68SHARE_GROUP_SIMPLE_KEYS = {
69 'id', 'name', 'links',
70}
71SHARE_GROUP_DETAIL_REQUIRED_KEYS = {
72 'id', 'name', 'description', 'created_at', 'status', 'share_types',
73 'project_id', 'host', 'links', 'share_group_type_id',
74}
75SHARE_GROUP_SNAPSHOT_SIMPLE_KEYS = {
76 'id', 'name', 'links',
77}
78SHARE_GROUP_SNAPSHOT_DETAIL_REQUIRED_KEYS = {
79 'id', 'name', 'description', 'created_at', 'status', 'project_id',
80 'links', 'share_group_id', 'members',
81}
82
83SHARE_GROUP_TYPE_REQUIRED_KEYS = {
84 'id', 'name', 'share_types', 'is_public', 'group_specs',
85}