diff --git a/SoftLayer/CLI/block/subnets/assign.py b/SoftLayer/CLI/block/subnets/assign.py index e07797bb3..d80e5aff4 100644 --- a/SoftLayer/CLI/block/subnets/assign.py +++ b/SoftLayer/CLI/block/subnets/assign.py @@ -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 - Assign block storage subnets to the given host id. - access_id is the host_id obtained by: slcli block access-list SoftLayer_Account::iscsiisolationdisabled must be False to use this command diff --git a/SoftLayer/CLI/block/subnets/list.py b/SoftLayer/CLI/block/subnets/list.py index 08c512a83..297846abd 100644 --- a/SoftLayer/CLI/block/subnets/list.py +++ b/SoftLayer/CLI/block/subnets/list.py @@ -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 - List block storage assigned subnets for the given host id. - access_id is the host_id obtained by: slcli block access-list """ diff --git a/SoftLayer/CLI/block/subnets/remove.py b/SoftLayer/CLI/block/subnets/remove.py index a3faec099..98d52ad11 100644 --- a/SoftLayer/CLI/block/subnets/remove.py +++ b/SoftLayer/CLI/block/subnets/remove.py @@ -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 - - Remove block storage subnets for the given host id. - access_id is the host_id obtained by: slcli block access-list SoftLayer_Account::iscsiisolationdisabled must be False to use this command