Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions SoftLayer/CLI/block/order.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
required=True)
@click.option('--size',
type=int,
help='Size of block storage volume in GB',
help='Size of block storage volume in GB. Permitted Sizes:\n'
'20, 40, 80, 100, 250, 500, 1000, 2000, 4000, 8000, 12000',
required=True)
@click.option('--iops',
type=int,
Expand Down Expand Up @@ -71,7 +72,7 @@ def cli(env, storage_type, size, iops, tier, os_type,
if snapshot_size is not None:
raise exceptions.CLIAbort(
'Option --snapshot-size not allowed for performance volumes.'
' Snapshots are only available for endurance storage.'
'Snapshots are only available for endurance storage.'
)

try:
Expand Down
1 change: 0 additions & 1 deletion SoftLayer/CLI/iscsi/__init__.py

This file was deleted.

30 changes: 0 additions & 30 deletions SoftLayer/CLI/iscsi/cancel.py

This file was deleted.

23 changes: 0 additions & 23 deletions SoftLayer/CLI/iscsi/create.py

This file was deleted.

54 changes: 0 additions & 54 deletions SoftLayer/CLI/iscsi/detail.py

This file was deleted.

43 changes: 0 additions & 43 deletions SoftLayer/CLI/iscsi/list.py

This file was deleted.

13 changes: 0 additions & 13 deletions SoftLayer/CLI/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,6 @@
('image:import', 'SoftLayer.CLI.image.import:cli'),
('image:export', 'SoftLayer.CLI.image.export:cli'),

('iscsi', 'SoftLayer.CLI.iscsi'),
('iscsi:cancel', 'SoftLayer.CLI.iscsi.cancel:cli'),
('iscsi:create', 'SoftLayer.CLI.iscsi.create:cli'),
('iscsi:detail', 'SoftLayer.CLI.iscsi.detail:cli'),
('iscsi:list', 'SoftLayer.CLI.iscsi.list:cli'),

('loadbal', 'SoftLayer.CLI.loadbal'),
('loadbal:cancel', 'SoftLayer.CLI.loadbal.cancel:cli'),
('loadbal:create', 'SoftLayer.CLI.loadbal.create:cli'),
Expand Down Expand Up @@ -193,13 +187,6 @@
('hardware:credentials', 'SoftLayer.CLI.hardware.credentials:cli'),
('hardware:update-firmware', 'SoftLayer.CLI.hardware.update_firmware:cli'),

('snapshot', 'SoftLayer.CLI.snapshot'),
('snapshot:cancel', 'SoftLayer.CLI.snapshot.cancel:cli'),
('snapshot:create', 'SoftLayer.CLI.snapshot.create:cli'),
('snapshot:create-space', 'SoftLayer.CLI.snapshot.create_space:cli'),
('snapshot:list', 'SoftLayer.CLI.snapshot.list:cli'),
('snapshot:restore-volume', 'SoftLayer.CLI.snapshot.restore_volume:cli'),

('sshkey', 'SoftLayer.CLI.sshkey'),
('sshkey:add', 'SoftLayer.CLI.sshkey.add:cli'),
('sshkey:remove', 'SoftLayer.CLI.sshkey.remove:cli'),
Expand Down
1 change: 0 additions & 1 deletion SoftLayer/CLI/snapshot/__init__.py

This file was deleted.

21 changes: 0 additions & 21 deletions SoftLayer/CLI/snapshot/cancel.py

This file was deleted.

20 changes: 0 additions & 20 deletions SoftLayer/CLI/snapshot/create.py

This file was deleted.

22 changes: 0 additions & 22 deletions SoftLayer/CLI/snapshot/create_space.py

This file was deleted.

37 changes: 0 additions & 37 deletions SoftLayer/CLI/snapshot/list.py

This file was deleted.

22 changes: 0 additions & 22 deletions SoftLayer/CLI/snapshot/restore_volume.py

This file was deleted.

2 changes: 0 additions & 2 deletions SoftLayer/managers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
from SoftLayer.managers.firewall import FirewallManager
from SoftLayer.managers.hardware import HardwareManager
from SoftLayer.managers.image import ImageManager
from SoftLayer.managers.iscsi import ISCSIManager
from SoftLayer.managers.load_balancer import LoadBalancerManager
from SoftLayer.managers.messaging import MessagingManager
from SoftLayer.managers.metadata import MetadataManager
Expand All @@ -34,7 +33,6 @@
'FirewallManager',
'HardwareManager',
'ImageManager',
'ISCSIManager',
'LoadBalancerManager',
'MessagingManager',
'MetadataManager',
Expand Down
Loading