Skip to content

Commit 8a2c196

Browse files
committed
Merge pull request softlayer#313 from beittenc/update_product_names
Update product names
2 parents c75fe8f + a7fece2 commit 8a2c196

35 files changed

Lines changed: 2189 additions & 2574 deletions

SoftLayer/CLI/core.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,11 @@
99
The available modules are:
1010
1111
Compute:
12-
bmc Bare Metal Cloud
13-
cci Cloud Compute Instances
1412
image Manages compute and flex images
1513
metadata Get details about this machine. Also available with 'my' and 'meta'
16-
server Hardware servers
14+
server Bare metal servers
1715
sshkey Manage SSH keys on your account
16+
vs Virtual Servers (formerly CCIs)
1817
1918
Networking:
2019
cdn Content Delivery Network service management

SoftLayer/CLI/environment.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,12 @@ def __init__(self):
4444
self.aliases = {
4545
'meta': 'metadata',
4646
'my': 'metadata',
47-
'vm': 'cci',
47+
'vm': 'vs',
48+
'cci': 'vs',
4849
'hardware': 'server',
4950
'hw': 'server',
5051
'bmetal': 'bmc',
52+
'virtual': 'vs',
5153
}
5254
self.stdout = sys.stdout
5355
self.stderr = sys.stderr

0 commit comments

Comments
 (0)