-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsvc_messages.py
18 lines (18 loc) · 1.07 KB
/
svc_messages.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
GET_HOST_IO_GROUP = 'Getting host {} io_group'
HOST_IO_GROUP_IDS = 'Host {} io_group ids: {}'
REMOVE_HOST_IO_GROUP = 'Removing io_group {}, from host {}'
ADD_HOST_IO_GROUP = 'Adding io_group {}, to host {}'
HOST_CONNECTIVITY_TYPE = 'Host {} connectivity type: {}'
HOST_PORT_BY_CONNECTIVITY_TYPE = 'Host {} ports by connectivity type {}: {}'
REMOVE_HOST_PORT = 'Removing port {} from host {}'
ADD_PORT_TO_HOST = 'Adding port {} to host {}'
DELETE_HOST = 'Deleting host {}'
CREATE_HOST_WITHOUT_IO_GROUP = 'Created host {} with port {}'
CREATE_HOST_WITH_IO_GROUP = 'Created host {} with port [{}] and with io_group [{}]'
CHANGE_HOST_PROTOCOL = 'Changed host {} protocol to: {}'
GET_OWNERSHIP_GROUP_POOLS = 'Getting pools for ownership group {}'
NO_POOLS_FOUND_IN_OWNERSHIP_GROUP = 'No pools found in ownership group {}'
POOLS_FOUND_IN_OWNERSHIP_GROUP = 'Pools found in ownership group {}: {}'
REMOVING_ALL_MAPPINGS_FROM_OWNERSHIP_GROUP = 'Removing all mappings from ownership group {}'
REMOVING_MAPPINGS = 'Removing mappings {}'
CHANGE_POOLS_OWNERSHIP_GROUP = 'Changing pools ownership group to {}'