Skip to content

Commit

Permalink
updated the description
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramkishor Chaladi authored and Ramkishor Chaladi committed Jul 19, 2023
1 parent 22d6092 commit f1e1839
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions SoftLayer/CLI/block/subnets/assign.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
help="ID of the subnets to assign; e.g.: --subnet-id 1234")
@environment.pass_env
def cli(env, access_id, subnet_id):
"""EXAMPLE:
"""Assign block storage subnets to the given host id.
EXAMPLE::
slcli block subnets-assign 111111 --subnet-id 222222
slcli block subnets-assign 111111 --subnet-id 222222 --subnet-id 333333
ACCESS_ID is the host_id obtained by: softlayer slcli block access-list <volume_id>
Assign block storage subnets to the given host id.
access_id is the host_id obtained by: slcli block access-list <volume_id>
SoftLayer_Account::iscsiisolationdisabled must be False to use this command
Expand Down
6 changes: 3 additions & 3 deletions SoftLayer/CLI/block/subnets/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
@click.argument('access_id', type=int)
@environment.pass_env
def cli(env, access_id):
"""Example:
"""List block storage assigned subnets for the given host id.
Example::
slcli block subnets-list 12345678
ACCESS_ID is the host_id obtained by: softlayer slcli block access-list <volume_id>
List block storage assigned subnets for the given host id.
access_id is the host_id obtained by: slcli block access-list <volume_id>
"""

Expand Down
7 changes: 3 additions & 4 deletions SoftLayer/CLI/block/subnets/remove.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,14 @@
help="ID of the subnets to remove; e.g.: --subnet-id 1234")
@environment.pass_env
def cli(env, access_id, subnet_id):
"""Example:
"""Remove block storage subnets for the given host id.
Example::
slcli block subnets-remove 111111 --subnet-id 222222
slcli block subnets-remove 111111 --subnet-id 222222 --subnet-id 333333
ACCESS_ID is the host_id obtained by: slcli block access-list <volume_id>
Remove block storage subnets for the given host id.
access_id is the host_id obtained by: slcli block access-list <volume_id>
SoftLayer_Account::iscsiisolationdisabled must be False to use this command
Expand Down

0 comments on commit f1e1839

Please sign in to comment.