From aa33ffe2b2d1f84a83d6f0e439ff02c8065ac92c Mon Sep 17 00:00:00 2001 From: Al Miller Date: Wed, 12 Nov 2014 13:22:29 -0800 Subject: [PATCH] Remove VM management calls Per the discussion in the 12-Nov-2014 openstack octavia meeting, remove the definition of start(), stop(), suspend(), resume(), and backup(). Change-Id: Iefc9c295ec5188b871681ff1804b563ac4feff32 --- .../version0.5/amphora-manager-interface.rst | 41 ------------------- 1 file changed, 41 deletions(-) diff --git a/specs/version0.5/amphora-manager-interface.rst b/specs/version0.5/amphora-manager-interface.rst index 4ee876504b..97785683d5 100755 --- a/specs/version0.5/amphora-manager-interface.rst +++ b/specs/version0.5/amphora-manager-interface.rst @@ -93,47 +93,6 @@ Establish an abstract base class to model the desired functionality: """ raise NotImplementedError - def start(self, amphora_id): - """ start the specified instance - - :param amphora_id: the id of the instance to start - """ - - raise NotImplementedError - - def suspend(self, amphora_id): - """ suspend the specified instance - - :param amphora_id: the id of the instance to suspend - """ - - raise NotImplementedError - - def resume(self, amphora_id): - """ resume the specified instance - - :param amphora_id: the id of the instance to suspend - """ - - raise NotImplementedError - - def stop(self, amphora_id): - """ stop the specified instance - - :param amphora_id: the id of the instance to stop - """ - - raise NotImplementedError - - def backup(self, amphora_id): - """ create a backup of the specified instance. The - format of the backup is implementation-defined - - :param amphora_id: the id of the instance to snapshot - """ - - raise NotImplementedError - Exception Model ---------------