Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
RECIRCLE
/
interface-openstack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
2
Merge Requests
4
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
c8e659e1
authored
Jul 04, 2019
by
Belákovics Ádám
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replaced all imports with absolute routes
parent
46de2184
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
implementation/image/OpenstackImageManager.py
+2
-2
implementation/storage/OpenstackSnapshotManager.py
+2
-2
implementation/storage/OpenstackStorageManager.py
+2
-2
implementation/vm/instance.py
+2
-2
No files found.
implementation/image/OpenstackImageManager.py
View file @
c8e659e1
from
openstack.exceptions
import
ResourceNotFound
from
interface.image.ImageManager
import
ImageManager
from
interface.image.Image
import
Image
from
interface
_openstack.interface
.image.ImageManager
import
ImageManager
from
interface
_openstack.interface
.image.Image
import
Image
class
OpenstackImageManager
(
ImageManager
):
...
...
implementation/storage/OpenstackSnapshotManager.py
View file @
c8e659e1
from
openstack.exceptions
import
ResourceNotFound
from
interface.storage.Snapshot
import
Snapshot
from
interface.storage.SnapshotManager
import
SnapshotManager
from
interface
_openstack.interface
.storage.Snapshot
import
Snapshot
from
interface
_openstack.interface
.storage.SnapshotManager
import
SnapshotManager
class
OpenstackSnapshotManager
(
SnapshotManager
):
...
...
implementation/storage/OpenstackStorageManager.py
View file @
c8e659e1
from
openstack.exceptions
import
ResourceNotFound
from
interface.storage.StorageManager
import
StorageManager
from
interface.storage.Volume
import
Volume
from
interface
_openstack.interface
.storage.StorageManager
import
StorageManager
from
interface
_openstack.interface
.storage.Volume
import
Volume
class
OpenstackStorageManager
(
StorageManager
):
...
...
implementation/vm/instance.py
View file @
c8e659e1
from
interface.vm.instance
import
InstanceInterface
from
interface.vm.resources
import
Instance
,
Flavor
from
interface
_openstack.interface
.vm.instance
import
InstanceInterface
from
interface
_openstack.interface
.vm.resources
import
Instance
,
Flavor
from
openstack.exceptions
import
SDKException
from
novaclient
import
client
import
logging
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment