Skip to content

Commit 0c794d4

Browse files
committed
Solved comments
1 parent 22f9187 commit 0c794d4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

SoftLayer/CLI/block/access/authorize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
@click.option('--hardware-id', '-d', multiple=True,
1515
help='The ID of one hardware server to authorize. ' + MULTIPLE)
1616
@click.option('--ip-address-id', '-i', multiple=True,
17-
help='The ID of one IP address to authorize. ' + MULTIPLE)
17+
help='The ID of one SoftLayer_Network_Subnet_IpAddress to authorize. ' + MULTIPLE)
1818
@click.option('--ip-address', multiple=True,
1919
help='An IP address to authorize. ' + MULTIPLE)
2020
@click.option('--virtual-id', '-v', multiple=True,

SoftLayer/CLI/block/access/password.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@click.command(cls=SoftLayer.CLI.command.SLCommand, )
1010
@click.argument('access_id')
1111
@click.option('--password', '-p', multiple=False,
12-
help='Password you want to set, this command will fail if the password is not strong')
12+
help='Password you want to set, this command will fail if the password is not strong.')
1313
@environment.pass_env
1414
def cli(env, access_id, password):
1515
"""Changes a password for a volume's access.

SoftLayer/CLI/block/access/revoke.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
@click.command(cls=SoftLayer.CLI.command.SLCommand, )
1010
@click.argument('volume_id')
1111
@click.option('--hardware-id', '-d', multiple=True,
12-
help='The ID of one IP address to revoke authorization')
12+
help='The ID of one SoftLayer_Hardware to revoke authorization.')
1313
@click.option('--ip-address-id', '-i', multiple=True,
14-
help='The ID of one IP address to revoke authorization')
14+
help='The ID of one SoftLayer_Network_Subnet_IpAddress to revoke authorization.')
1515
@click.option('--ip-address', multiple=True,
16-
help='An IP address to revoke authorization')
16+
help='An IP address to revoke authorization.')
1717
@click.option('--virtual-id', '-v', multiple=True,
18-
help='The ID of one virtual server to revoke authorization')
18+
help='The ID of one SoftLayer_Virtual_Guest to revoke authorization.')
1919
@environment.pass_env
2020
def cli(env, volume_id, hardware_id, virtual_id, ip_address_id, ip_address):
2121
"""Revoke authorization for hosts that are accessing a specific volume."""

0 commit comments

Comments
 (0)