1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
# Copyright (c) 2016 Cloudbase Solutions Srl
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from coriolisclient import base
from coriolisclient.v1 import common
class Migration(base.Resource):
_tasks = None
@property
def source_environment(self):
source_env = self._info.get("source_environment")
if source_env is not None:
return common.SourceEnvironment(None, source_env, loaded=True)
@property
def destination_environment(self):
dest_env = self._info.get("destination_environment")
if dest_env is not None:
return common.DestinationEnvironment(None, dest_env, loaded=True)
@property
def transfer_result(self):
res = self._info.get("transfer_result")
if res is not None:
return common.TransferResult(None, res, loaded=True)
@property
def tasks(self):
if self._info.get('tasks') is None:
self.get()
return [common.Task(None, d, loaded=True) for d in
self._info.get('tasks', [])]
class MigrationManager(base.BaseManager):
resource_class = Migration
def __init__(self, api):
super(MigrationManager, self).__init__(api)
def list(self, detail=False):
path = "/migrations"
if detail:
path = "%s/detail" % path
return self._list(path, 'migrations')
def get(self, migration):
return self._get('/migrations/%s' % base.getid(migration), 'migration')
def create(self, origin_endpoint_id, destination_endpoint_id,
source_environment, destination_environment, instances,
network_map=None, notes=None, storage_mappings=None,
skip_os_morphing=False, replication_count=None,
shutdown_instances=None, user_scripts=None,
origin_minion_pool_id=None, destination_minion_pool_id=None,
instance_osmorphing_minion_pool_mappings=None):
if not network_map:
network_map = destination_environment.get('network_map', {})
if not storage_mappings:
storage_mappings = destination_environment.get(
'storage_mappings', {})
data = {
"migration": {
"origin_endpoint_id": origin_endpoint_id,
"destination_endpoint_id": destination_endpoint_id,
"destination_environment": destination_environment,
"instances": instances,
"skip_os_morphing": skip_os_morphing,
"network_map": network_map,
"notes": notes,
"storage_mappings": storage_mappings,
"user_scripts": user_scripts}}
if source_environment is not None:
data['migration']['source_environment'] = source_environment
if shutdown_instances is not None:
data['migration']['shutdown_instances'] = shutdown_instances
if replication_count is not None:
data['migration']['replication_count'] = replication_count
if origin_minion_pool_id is not None:
data['migration']['origin_minion_pool_id'] = origin_minion_pool_id
if destination_minion_pool_id is not None:
data['migration']['destination_minion_pool_id'] = (
destination_minion_pool_id)
if instance_osmorphing_minion_pool_mappings:
data['migration']['instance_osmorphing_minion_pool_mappings'] = (
instance_osmorphing_minion_pool_mappings)
return self._post('/migrations', data, 'migration')
def create_from_replica(self, replica_id, clone_disks=True, force=False,
skip_os_morphing=False, user_scripts=None,
instance_osmorphing_minion_pool_mappings=None):
data = {"migration": {
"replica_id": replica_id,
"clone_disks": clone_disks,
"force": force,
"skip_os_morphing": skip_os_morphing,
"user_scripts": user_scripts}}
if instance_osmorphing_minion_pool_mappings is not None:
data['migration']['instance_osmorphing_minion_pool_mappings'] = (
instance_osmorphing_minion_pool_mappings)
return self._post('/migrations', data, 'migration')
def delete(self, migration):
return self._delete('/migrations/%s' % base.getid(migration))
def cancel(self, migration, force=False):
return self.client.post(
'/migrations/%s/actions' % base.getid(migration),
json={'cancel': {'force': force}})
|